| com.sun.midp.lcdui.ForegroundController
All known Subclasses: com.sun.midp.main.CdcMIDletSuiteLoader, com.sun.midp.jump.isolate.MIDletContainer, com.sun.midp.main.CldcForegroundController,
ForegroundController | public interface ForegroundController (Code) | | This class provides methods to abstract the central foreground control
code from the the LCDUI library.
|
registerDisplay | Displayable registerDisplay(int displayId, String ownerClassName)(Code) | | Called to register a newly created Display. Must method must
be called before the other methods can be called.
Parameters: displayId - ID of the Display Parameters: ownerClassName - Class name of the that owns the display a place holder displayable to used when "getCurrent()==null",if null is returned an empty form is used |
requestBackground | void requestBackground(int displayId)(Code) | | Called to request the background.
Parameters: displayId - ID of the Display |
requestForeground | void requestForeground(int displayId, boolean isAlert)(Code) | | Called to request the foreground.
Parameters: displayId - ID of the Display Parameters: isAlert - true if the current displayable is an Alert |
startPreempting | void startPreempting(int displayId)(Code) | | Called to start preempting. The given display will preempt all other
displays for this isolate.
Parameters: displayId - ID of the Display |
stopPreempting | void stopPreempting(int displayId)(Code) | | Called to stop preempting.
Parameters: displayId - ID of the Display |
|
|