?? coutdown.java
字號:
import java.util.TimerTask;import javax.microedition.lcdui.Canvas;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class coutDown extends TimerTask { public static final int TASK_SPLASH = 0; private splashScreen splash; int taskType; public coutDown(splashScreen splash) { this.splash = splash; this.taskType = TASK_SPLASH; } public void run() { /**@todo Implement this java.lang.Runnable abstract method*/ switch(taskType) { case TASK_SPLASH: splashScreen.access(this.splash); break; } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -