ExAlert.java
资源名称:J2ME&Game.rar [点击查看]
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:
J2ME
开发平台:
Java
- package exframework;
- /**
- * <p>Title: ExFramework</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.*;
- import java.util.*;
- public class ExAlert
- {
- public ExAlert(MainForm form)
- {
- Timer timer = new Timer();
- timer.schedule(new AlertOver(form),3000);
- }
- }
- class AlertOver extends TimerTask
- {
- MainForm form;
- public AlertOver(MainForm form)
- {
- this.form = form;
- }
- public void run()
- {
- Display.getDisplay(MainMIDlet.instance).setCurrent(form);
- form.addline("alert over");
- }
- }