⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 navigationcommand.java

📁 基于j2me平台的,手机开发的MVC框架源码
💻 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 + -