📄 hiisimidlet.java
字号:
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) { } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -