| example.serverscript.demo.Demo
Demo | public class Demo extends MIDlet implements Runnable,CommandListener(Code) | | JSR 172 demo.
Almost all screens displayed by the demo comes from server in xml format.
It's up to server, what the demo will do.
|
Method Summary | |
public void | commandAction(Command c, Displayable d) Handle users commands. | public void | destroyApp(boolean unconditional) Destroy midlet. | public void | error(String msg) Display error screen. | public void | pauseApp() Pause the midlet. | public void | run() Retrieving and parsing thread. | public void | startApp() |
commandAction | public void commandAction(Command c, Displayable d)(Code) | | Handle users commands.
|
destroyApp | public void destroyApp(boolean unconditional)(Code) | | Destroy midlet.
Parameters: unconditional - Unconditional flag. |
error | public void error(String msg)(Code) | | Display error screen.
|
pauseApp | public void pauseApp()(Code) | | Pause the midlet.
|
run | public void run()(Code) | | Retrieving and parsing thread.
|
startApp | public void startApp()(Code) | | Initialize midlet data, service, parsers
|
|
|