HiisiMIDlet.java
上传用户:kyckim
上传日期:2007-12-11
资源大小:332k
文件大小:1k
源码类别:

通讯/手机编程

开发平台:

Java

  1. package Hiisi;
  2. import javax.microedition.midlet.MIDlet;
  3. public class HiisiMIDlet extends MIDlet {
  4. // properties of this MIDlet
  5. static final String proxyName = "Hiisi Proxy";
  6. static final String version = "2007-07-14";
  7. // class instances
  8. static HiisiMIDlet hiisiMIDlet; // MIDlet
  9. static MainForm mainForm; // Application Main
  10. static LogForm logForm; // HTTP Log
  11. static SettingForm settingForm; // Settings
  12. static Gateway gateway; // Server
  13. static BluetoothConnection bluetoothConnection; // Bluetooth Connector
  14. // constructor
  15. public HiisiMIDlet() {
  16. hiisiMIDlet = this;
  17. settingForm = new SettingForm();
  18. gateway = new Gateway();
  19. bluetoothConnection = new BluetoothConnection();
  20. logForm = new LogForm();
  21. mainForm = new MainForm();
  22. }
  23. // start
  24. public void startApp() {
  25. }
  26. // pause
  27. public void pauseApp() {
  28. }
  29. // destroy
  30. public void destroyApp(boolean flag) {
  31. }
  32. // exit
  33. public void exitApp() {
  34. try {
  35. destroyApp(true);
  36. notifyDestroyed();
  37. } catch(Exception e) {
  38. }
  39. }
  40. }