About.java
上传用户:public
上传日期:2010-01-27
资源大小:484k
文件大小:1k
- package GameDisplay;
- import javax.microedition.lcdui.*;
- public class About extends TextBox implements CommandListener {
- Command ok;
- public About() {
- super(null,"声 明:nn"+ " 此小游戏仅限学习交流使用......n"+
- " 游戏学院大连大建授权培训中心nn "+
- " **风云工作组**nn "+
- " 制作",
- 255,TextField.ANY
- );
- try {
- jbInit();
- }
- catch(Exception e) {
- e.printStackTrace();
- }
- }
- private void jbInit() throws Exception {
- ok=new Command("确定",Command.OK,1);
- addCommand(ok);
- setCommandListener(this);
- }
- public void commandAction(Command command, Displayable displayable) {
- if(command==ok){
- Control.showMenu();
- }
- }
- }