CustomForm.java
资源名称:J2ME.rar [点击查看]
上传用户:sygbg6
上传日期:2020-12-29
资源大小:4884k
文件大小:1k
源码类别:
游戏
开发平台:
Java
- package cn.com.imageanalyze.customform;
- import javax.microedition.lcdui.Form;
- import javax.microedition.midlet.MIDlet;
- public abstract class CustomForm extends Form {
- protected Parent parent;
- public CustomForm(String arg0,Parent parent) {
- super(arg0);
- this.parent = parent;
- // TODO Auto-generated constructor stub
- }
- public void show(){
- CustomFormShowThread dt = new CustomFormShowThread(this);
- dt.start();
- }
- public void getCurrScreen(){
- }
- public abstract void paintSelf();
- }