Name
javax.microedition.midlet.MIDlet
Synopsis
This abstract class is the base class of all MIDlet applications. The methods specified in this class allow MIDlet management software to create, start, pause, and destroy a MIDlet. Hence, a MIDlet can be in one of three states: paused, active, or destroyed.
A MIDlet becomes active when the startApp( )
method is called. In this state, the MIDlet may hold resources. To
change the MIDlet’s state to pause, the pauseApp( ) method is used. The destroyApp( )
method is used to terminate and enter the destroyed state. In the
destroyed state, the MIDlet must release all resources and save any
persistent data. This method can be called from the active and paused
states. If destroyApp( ) is passed
true, the MIDlet must clean up and release all
resources. If false, the MIDlet
may throw
MIDletStateChangeException, indicating it does not
want to be destroyed.
public abstract classMIDlet{ // protected constructors protectedMIDlet( ); // protected instance methods protected abstract voiddestroyApp(boolean unconditional) throws MIDletStateChangeException; protected abstract voidpauseApp( ); protected abstract voidstartApp( ) throws MIDletStateChangeException; // public instance methods public final StringgetAppProperty(String key); public final voidnotifyDestroyed( ); public final voidnotifyPaused( ); public final voidresumeRequest( ); }
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access