navigationcommand.java

来自「基于j2me平台的,手机开发的MVC框架源码」· Java 代码 · 共 23 行

JAVA
23
字号
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 + =
减小字号Ctrl + -
显示快捷键?