About.java
上传用户:public
上传日期:2010-01-27
资源大小:484k
文件大小:1k
源码类别:

其他游戏

开发平台:

Java

  1. package GameDisplay;
  2. import javax.microedition.lcdui.*;
  3. public class About extends TextBox implements CommandListener {
  4.   Command ok;
  5.   public About() {
  6.     super(null,"声 明:nn"+ "  此小游戏仅限学习交流使用......n"+
  7.                             "              游戏学院大连大建授权培训中心nn    "+
  8.                             "                     **风云工作组**nn   "+
  9.                             "                                      制作",
  10.                           255,TextField.ANY
  11.                       );
  12.     try {
  13.       jbInit();
  14.     }
  15.     catch(Exception e) {
  16.       e.printStackTrace();
  17.     }
  18.   }
  19.   private void jbInit() throws Exception {
  20.     ok=new Command("确定",Command.OK,1);
  21.         addCommand(ok);
  22.         setCommandListener(this);
  23.   }
  24.   public void commandAction(Command command, Displayable displayable) {
  25.     if(command==ok){
  26.          Control.showMenu();
  27.    }
  28.   }
  29. }