UserList.java
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. package cardclient;
  2. /**
  3.  * <p>Title: CardClient</p>
  4.  *
  5.  * <p>Description: lizhenpeng</p>
  6.  *
  7.  * <p>Copyright: Copyright (c) 2005</p>
  8.  *
  9.  * <p>Company: LP&P</p>
  10.  *
  11.  * @author lipeng
  12.  * @version 1.0
  13.  */
  14. import javax.microedition.lcdui.*;
  15. public class UserList extends List
  16. {
  17.   public UserList()
  18.   {
  19.     super("用户列表",List.IMPLICIT);
  20.     this.addCommand(MainGame.inst.commandBegin);
  21.     this.setCommandListener(MainGame.inst);
  22.     for(int i=0;i<GameManager.inst.userList.length;i++)
  23.     {
  24.       append(GameManager.inst.userList[i],null);
  25.     }
  26.   }
  27. }