| |
|
| java.lang.Object javax.microedition.midlet.MIDlet com.sun.midp.demos.HelloWorld
HelloWorld | public class HelloWorld extends MIDlet (Code) | | An example MIDlet with simple "Hello World" text and an exit command.
|
Constructor Summary | |
public | HelloWorld() Constructs the HelloWorld MIDlet. |
Method Summary | |
public void | destroyApp(boolean unconditional) Destroys the MIDlet; this method does nothing because
there is nothing to cleanup that is not handled by the
garbage collector. | public void | pauseApp() Pauses the MIDlet; this method does nothing because
there are no background activities or shared resources
to close. | public void | startApp() Prints "Hello World" and destroys the MIDlet. |
HelloWorld | public HelloWorld()(Code) | | Constructs the HelloWorld MIDlet.
|
destroyApp | public void destroyApp(boolean unconditional)(Code) | | Destroys the MIDlet; this method does nothing because
there is nothing to cleanup that is not handled by the
garbage collector.
|
pauseApp | public void pauseApp()(Code) | | Pauses the MIDlet; this method does nothing because
there are no background activities or shared resources
to close.
|
startApp | public void startApp()(Code) | | Prints "Hello World" and destroys the MIDlet.
|
|
|
|