Methods Summary |
---|
public javax.microedition.lcdui.Displayable | registerDisplay(int displayId, java.lang.String ownerClassName)Called to register a newly create Display. Must method must
be called before the other methods can be called.
midletControllerEventProducer.
sendDisplayCreateNotifyEvent(displayId, ownerClassName);
return new HeadlessAlert(displayId, midletControllerEventProducer);
|
public void | requestBackground(int displayId)Called to request the background.
midletControllerEventProducer.
sendDisplayBackgroundRequestEvent(displayId);
|
public void | requestForeground(int displayId, boolean isAlert)Called to request the foreground.
midletControllerEventProducer.
sendDisplayForegroundRequestEvent(displayId, isAlert);
|
public void | startPreempting(int displayId)Called to start preempting. The given display will preempt all other
displays for this isolate.
midletControllerEventProducer.
sendDisplayPreemptStartEvent(displayId);
|
public void | stopPreempting(int displayId)Called to end preempting.
midletControllerEventProducer.
sendDisplayPreemptStopEvent(displayId);
|