📄 circumgyrate.java
字号:
//package com.circumgyrate;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
/**
* <P>Title: </P>
* <P>Description: </P>
* <P>Copyright: Copyright (c) 2004</P>
* <P>Company: </P>
* @author not attributable
* @version 1.0
*/
public class circumgyrate
extends MIDlet {
private Display display;
private ViewCanvas canvas;
public circumgyrate() {
super();
display = Display.getDisplay(this);
canvas = new ViewCanvas(this);
}
protected void startApp() throws MIDletStateChangeException {
display.setCurrent(canvas); // 设置显示画布对象
}
protected void pauseApp() {
}
protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
}
public void exitMIDlet() {
try {
destroyApp(true);
}
catch (MIDletStateChangeException e) {
}
notifyDestroyed();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -