CustomForm.java
上传用户:sygbg6
上传日期:2020-12-29
资源大小:4884k
文件大小:1k
源码类别:

游戏

开发平台:

Java

  1. package cn.com.imageanalyze.customform;
  2. import javax.microedition.lcdui.Form;
  3. import javax.microedition.midlet.MIDlet;
  4. public abstract class CustomForm extends Form {
  5. protected Parent parent;
  6. public CustomForm(String arg0,Parent parent) {
  7. super(arg0);
  8. this.parent = parent;
  9. // TODO Auto-generated constructor stub
  10. }
  11. public void show(){
  12. CustomFormShowThread dt = new CustomFormShowThread(this);
  13. dt.start();
  14. }
  15. public void getCurrScreen(){
  16. }
  17. public abstract void paintSelf();
  18. }