?? makeresources.java
字號:
/* MakeResourceMIDlet
* This file is NOT included in dist
*
*/
package inline.res;
import javax.microedition.midlet.*;
import java.util.*;
import inline.res.*;
import inline.sys.*;
public class MakeResources extends MIDlet
{
private SerialHashtableFile sht;
public MakeResources()
{
sht = new SerialHashtableFile("/a/res.sht");
Language.make(sht);
Colors.make(sht);
MetaFigures.make(sht);
sht.save();
System.err.println("\n\n*** RES FILE CREATED ***\n\n");
}
protected void startApp() throws MIDletStateChangeException
{
// that's all
this.notifyDestroyed();
}
protected void pauseApp()
{
}
protected void destroyApp(boolean unconditional)
{
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -