javax.microedition.midlet.MIDlet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imp-1.0-stub Show documentation
Show all versions of imp-1.0-stub Show documentation
Stub of the Information Module Profile v1.0
The newest version!
package javax.microedition.midlet;
public abstract class MIDlet {
protected MIDlet() {}
/**
* @throws MIDletStateChangeException
*/
protected abstract void destroyApp(boolean unconditional) throws MIDletStateChangeException;
/**
* @throws NullPointerException
*/
public final String getAppProperty(String key) {
return null;
}
public final void notifyDestroyed() {}
public final void notifyPaused() {}
protected abstract void pauseApp();
public final void resumeRequest() {}
/**
* @throws MIDletStateChangeException
*/
protected abstract void startApp() throws MIDletStateChangeException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy