📄 navigationcommand.java
字号:
package net.sf.mvc.mobile.command;import javax.microedition.lcdui.Displayable;import net.sf.mvc.mobile.Navigation;public class NavigationCommand extends ActionCommand { private final Navigation navigation; public NavigationCommand(Navigation navigation, String label, int type, int priority) { super(label, type, priority); this.navigation = navigation; } public NavigationCommand(String navi, String label, int type, int priority) { this(new Navigation(navi, null), label, type, priority); } public Navigation execute(Displayable d) throws Exception { return navigation; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -