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

📄 pageitem.java

📁 Java手机游戏源代码(企业公司源代码)供初学者参考。
💻 JAVA
字号:
package com.gt.mrs.mvc.uimodel;

import java.util.Hashtable;

public class PageItem {

	private String text;
	private boolean focusable=true;
	private Menu menu=null;
	private String action;
	private Hashtable param;
	
	private String itemKey=null;
	
	public String getItemKey() {
		return itemKey;
	}

	public void setItemKey(String itemKey) {
		this.itemKey = itemKey;
	}

	public PageItem(){
	}
	
	public void setText(String text){
		this.text=text;
	}
	
	public String getText(){
		return this.text;
	}
	
	public void setFocusable(boolean focusable){
		this.focusable=focusable;
	}
	
	public boolean isFocusable(){
		return this.focusable;
	}

	public Menu getMenu() {
		return menu;
	}

	public void setMenu(Menu menu) {
		this.menu = menu;
	}
	
	public void setAction(String action) {
		this.action = action;
	}
	
	public Hashtable getParam() {
		return param;
	}

	public String getAction() {
		return action;
	}

	public void addActionParam(String key, String value) {
		if ( this.param == null ) {
			this.param = new Hashtable();
		}
		this.param.put(key, value);
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -