Java Reference
In-Depth Information
public StringItem get_helloStringItem() {
if (helloStringItem == null) {
helloStringItem = new StringItem("", "");
}
return helloStringItem;
}
public Command get_exitCommand() {
if (exitCommand == null) {
exitCommand = new Command("Exit", Command.EXIT, 1);
}
return exitCommand;
}
public List get_listContacts() {
if (listContacts == null) {
listContacts = new List(null, Choice.IMPLICIT,
new String[0], new Image[0]);
listContacts.setCommandListener(this);
listContacts.setSelectedFlags(new boolean[0]);
ContactLoaderThread t = new ContactLoaderThread(listContacts);
t.start();
}
return listContacts;
}
public Command get_okCommand1() {
if (okCommand1 == null) {
okCommand1 = new Command("Ok", Command.OK, 1);
}
return okCommand1;
}
public void startApp() {
initialize();
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
}
 
Search WWH ::




Custom Search