javaME useful code with the J2ME helpful learning cla

源代码在线查看: control.java

软件大小: 2843 K
上传用户: zhangchao0219
关键词: learning helpful javaME useful
下载地址: 免注册下载 普通下载 VIP

相关代码

				import javax.microedition.lcdui.Display;
				import javax.microedition.midlet.MIDlet;
				import javax.microedition.midlet.MIDletStateChangeException;
				
				public class control extends MIDlet {
					private gameCanvas sg;
					public control() {
						
						sg = new gameCanvas(this);
				
					}
				
					protected void startApp() throws MIDletStateChangeException {
						// TODO Auto-generated method stub
						Display.getDisplay(this).setCurrent(sg);
						// TODO Auto-generated constructor stub
						System.out.print("error");
					}
				
					protected void pauseApp() {
						// TODO Auto-generated method stub
				
					}
				
					protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
						// TODO Auto-generated method stub
				
					}
				
				}
							

相关资源