Methods Summary |
---|
public void | callDestroyApp(MIDlet m, boolean unconditional)Calls the destroyApp method on the midlet instance.
m.destroyApp(unconditional);
|
public void | callPauseApp(MIDlet m)Calls the pauseApp method on the midlet instance.
m.pauseApp();
|
public void | callStartApp(MIDlet m)Calls the startApp method on the midlet instance.
m.startApp();
|
public com.sun.midp.midlet.MIDletPeer | getMIDletPeer(MIDlet m)Returns the MIDletPeer object corresponding to the given
midlet instance.
return m.getMIDletPeer();
|