Uses of Class
org.j4me.ui.DeviceScreen

Packages that use DeviceScreen
org.j4me.ui UI framework for building professional looking applications that have a consistent experience across devices. 
org.j4me.ui.components UI widgets that can be placed onto J4ME UI screens. 
 

Uses of DeviceScreen in org.j4me.ui
 

Subclasses of DeviceScreen in org.j4me.ui
 class Dialog
          The Dialog class is a base class for any screen that accepts user input using standard components like the text box.
 class Menu
          The Menu class is used for creating the application's menus.
 

Fields in org.j4me.ui declared as DeviceScreen
protected  DeviceScreen Menu.previous
          The screen that invoked this one or null if there is no previous screen.
 

Methods in org.j4me.ui that return DeviceScreen
static DeviceScreen UIManager.getScreen()
          Returns the currently selected J4ME screen.
 

Methods in org.j4me.ui with parameters of type DeviceScreen
 void Menu.appendMenuOption(DeviceScreen option)
          Appends a screen as a menu option.
 void Menu.appendMenuOption(java.lang.String text, DeviceScreen option)
          Appends a screen as a menu option.
 void Menu.setPrevious(DeviceScreen previous)
          Sets the screen to return to if the user cancels this menu.
protected static void UIManager.setScreen(DeviceScreen canvas, javax.microedition.lcdui.Displayable screen)
          Sets the current screen for the application.
 

Constructors in org.j4me.ui with parameters of type DeviceScreen
Menu(java.lang.String name, DeviceScreen previous)
          Constructs a menu.
 

Uses of DeviceScreen in org.j4me.ui.components
 

Methods in org.j4me.ui.components that return DeviceScreen
 DeviceScreen Component.getScreen()
           
 

Methods in org.j4me.ui.components with parameters of type DeviceScreen
 void Component.paint(javax.microedition.lcdui.Graphics g, Theme theme, DeviceScreen screen, int x, int y, int width, int height, boolean selected)
          Paints the component using g.
 

Constructors in org.j4me.ui.components with parameters of type DeviceScreen
MenuOption(DeviceScreen choice)
          Creates a new MenuOption component that encapsulates a DeviceScreen.
MenuOption(java.lang.String text, DeviceScreen choice)
          Creates a new MenuOption component that encapsulates a DeviceScreen.