| java.lang.Object com.sun.jump.isolate.jvmprocess.JUMPAppContainer com.sun.jumpimpl.isolate.jvmprocess.midlet.AppContainerImpl
AppContainerImpl | public class AppContainerImpl extends JUMPAppContainer (Code) | | Application Container for the MIDlet app model.
This class is only a factory. The actual implementation is the
com.sun.midp.jump.isolate.MIDletContainer class in the MIDP JAR.
The factory uses the system property sun.midp.home.path as the
directory of the MIDP JAR (classes.zip).
|
destroyApp | public void destroyApp(int appId, boolean force)(Code) | | Call a MIDlet's destroyApp method.
This method will not return until after the the MIDlet's startApp
method has returned.
Parameters: appId - the application ID returned from startApp Parameters: force - if false, give the app the option of not being destroyed |
pauseApp | public void pauseApp(int appId)(Code) | | Call a MIDlet's pauseApp method.
This method will not return until after the the MIDlet's pauseApp
method has returned.
Parameters: the - application ID returned from startApp |
resumeApp | public void resumeApp(int appId)(Code) | | Call a MIDlet's startApp method.
This method will not return until after the the MIDlet's startApp
method has returned.
Parameters: the - application ID returned from startApp |
startApp | public int startApp(JUMPApplication app, String[] args)(Code) | | Create a MIDlet and call its startApp method.
This method will not return until after the the MIDlet's startApp
method has returned.
Parameters: app - application properties Parameters: args - arguments for the app runtime application ID |
|
|