You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
758 B
34 lines
758 B
12 years ago
|
import java.io.IOException;
|
||
|
import javax.microedition.lcdui.Command;
|
||
|
import javax.microedition.lcdui.CommandListener;
|
||
|
import javax.microedition.lcdui.Display;
|
||
|
import javax.microedition.lcdui.Displayable;
|
||
|
import javax.microedition.midlet.MIDlet;
|
||
|
|
||
|
public class hangmanp extends MIDlet {
|
||
|
public void startApp() {
|
||
|
Displayable d = null;
|
||
|
try {
|
||
|
d = new keycanvasp();
|
||
|
} catch (IOException ex) {
|
||
|
ex.printStackTrace();
|
||
|
}
|
||
|
|
||
|
d.setCommandListener(new CommandListener() {
|
||
|
public void commandAction(Command c, Displayable s) {
|
||
|
notifyDestroyed();
|
||
|
}
|
||
|
});
|
||
|
|
||
|
Display.getDisplay(this).setCurrent(d);
|
||
|
}
|
||
|
|
||
|
public void pauseApp() {
|
||
|
}
|
||
|
|
||
|
public void destroyApp(boolean unconditional) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|