UserList.java
资源名称:J2ME&Game.rar [点击查看]
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:
J2ME
开发平台:
Java
- package cardclient;
- /**
- * <p>Title: CardClient</p>
- *
- * <p>Description: lizhenpeng</p>
- *
- * <p>Copyright: Copyright (c) 2005</p>
- *
- * <p>Company: LP&P</p>
- *
- * @author lipeng
- * @version 1.0
- */
- import javax.microedition.lcdui.*;
- public class UserList extends List
- {
- public UserList()
- {
- super("用户列表",List.IMPLICIT);
- this.addCommand(MainGame.inst.commandBegin);
- this.setCommandListener(MainGame.inst);
- for(int i=0;i<GameManager.inst.userList.length;i++)
- {
- append(GameManager.inst.userList[i],null);
- }
- }
- }