HiisiMIDlet.java
上传用户:kyckim
上传日期:2007-12-11
资源大小:332k
文件大小:1k
- package Hiisi;
- import javax.microedition.midlet.MIDlet;
- public class HiisiMIDlet extends MIDlet {
-
- // properties of this MIDlet
- static final String proxyName = "Hiisi Proxy";
- static final String version = "2007-07-14";
-
- // class instances
- static HiisiMIDlet hiisiMIDlet; // MIDlet
- static MainForm mainForm; // Application Main
- static LogForm logForm; // HTTP Log
- static SettingForm settingForm; // Settings
- static Gateway gateway; // Server
- static BluetoothConnection bluetoothConnection; // Bluetooth Connector
-
- // constructor
- public HiisiMIDlet() {
- hiisiMIDlet = this;
- settingForm = new SettingForm();
- gateway = new Gateway();
- bluetoothConnection = new BluetoothConnection();
- logForm = new LogForm();
- mainForm = new MainForm();
- }
-
- // start
- public void startApp() {
- }
-
- // pause
- public void pauseApp() {
- }
-
- // destroy
- public void destroyApp(boolean flag) {
- }
-
- // exit
- public void exitApp() {
- try {
- destroyApp(true);
- notifyDestroyed();
- } catch(Exception e) {
- }
- }
- }