| com.sun.midp.midlet.MIDletTunnel
All known Subclasses: javax.microedition.midlet.MIDletTunnelImpl,
MIDletTunnel | public interface MIDletTunnel (Code) | | This is the interface to "tunnel" across Java package namespace,
and call the protected methods in the another package namespace.
The callee package will implement this interface, and provide
a static utility instance to the caller package.
|
callDestroyApp | public void callDestroyApp(MIDlet m, boolean unconditional) throws MIDletStateChangeException(Code) | | Calls the destroyApp method on the midlet instance.
Parameters: m - MIDlet instance Parameters: unconditional - the flag to pass to destroy exception: javax.microedition.midlet.MIDletStateChangeException - is thrown if the MIDlet wishes to continue to execute (Not enter the Destroyed state).This exception is ignored if unconditional is equal to true . |
callPauseApp | public void callPauseApp(MIDlet m)(Code) | | Calls the pauseApp method on the midlet instance.
Parameters: m - MIDlet instance |
getMIDletPeer | public MIDletPeer getMIDletPeer(MIDlet m)(Code) | | Returns the MIDletPeer object corresponding to the given
midlet instance.
Parameters: m - MIDlet instance associated MIDletPeer instance |
|
|