?? function.java
字號(hào):
package com.jeecms.core.entity;
import java.util.Set;
import com.jeecms.core.entity.base.BaseFunction;
import com.jeecms.core.util.PriorityInterface;
import com.ponyjava.common.util.SelectTree;
public class Function extends BaseFunction implements SelectTree,
PriorityInterface {
private static final long serialVersionUID = 1L;
/**
* 功能集的分隔符
*/
public static final String FUNC_SPLIT = "@";
/**
* 下拉列表樹
*/
private String selectTree;
public String getSelectTree() {
return selectTree;
}
public String getTreeName() {
return getName();
}
public Function getTreeParent() {
return getParent();
}
/* [CONSTRUCTOR MARKER BEGIN] */
public Function() {
super();
}
/**
* Constructor for primary key
*/
public Function(java.lang.Long id) {
super(id);
}
/**
* Constructor for required fields
*/
public Function(java.lang.Long id, java.lang.Integer priority,
java.lang.Boolean menu) {
super(id, priority, menu);
}
/* [CONSTRUCTOR MARKER END] */
public void setSelectTree(String selectTree) {
this.selectTree = selectTree;
}
public Set<? extends SelectTree> getTreeChild() {
return getChild();
}
@SuppressWarnings("unchecked")
public void setTreeChild(Set treeChild) {
// do nothing
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -