| com.sun.midp.appmanager.ApplicationManager
All known Subclasses: com.sun.midp.appmanager.SMMManager, com.sun.midp.appmanager.Manager, com.sun.midp.appmanager.MVMManager,
ApplicationManager | interface ApplicationManager (Code) | | This is a common interface for Application managers.
Application manager controls midlet life cycle:
- installs and updates midlet suites
- launches, moves to foreground and exits midlets
- shuts down the AMS system
It is used by the AppSelector.
|
exitMidlet | void exitMidlet(RunningMIDletSuiteInfo suiteInfo)(Code) | | Exit the midlet with the passed in midlet suite info.
Parameters: suiteInfo - information for the midlet to be terminated |
installSuite | void installSuite()(Code) | | Discover and install a suite.
|
launchCaManager | void launchCaManager()(Code) | | Launch the CA manager.
|
launchSuite | void launchSuite(RunningMIDletSuiteInfo suiteInfo, String midletToRun)(Code) | | Launches a suite.
Parameters: suiteInfo - information for suite to launch Parameters: midletToRun - class name of the MIDlet to launch |
moveToForeground | void moveToForeground(RunningMIDletSuiteInfo suiteInfo)(Code) | | Bring the midlet with the passed in midlet suite info to the
foreground.
Parameters: suiteInfo - information for the midlet to be put to foreground |
shutDown | void shutDown()(Code) | | Shut downt the system
|
updateSuite | void updateSuite(RunningMIDletSuiteInfo suiteInfo)(Code) | | Update a suite.
Parameters: suiteInfo - information for suite to update |
|
|