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