Following is J2ME MIDlet code snippet. It contains methods stubs that should exist in the MIDlet.
public class CheckBoxes extends MIDlet implements CommandListener {
public void startApp() {
...
}
public void pauseApp() {
...
}
public void destroyApp(boolean unconditional) {
...
}
public void commandAction(Command command, Displayable displayable) {
...
}
}