Introduction
Statistics
Contact
Development
Disclaimer
Help
gopher.rbfh.de home page
..
public class TESTlet extends MIDlet implements CommandListener {
..
public void commandAction(Command cmd, Displayable d) {
String label = cmd.getLabel();
if (label.equals("Exit")) {
destroyApp(true);
}
...
}
}