package com.vci.rmip.code.client.codeapply.Apply410.object;
|
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
|
import com.vci.rmip.code.client.codeapply.Apply410.object.tree.Tree;
|
|
public class ReferTreObject implements Serializable {
|
private static final long serialVersionUID = 6886695271635257882L;
|
private String oid;
|
private String text;
|
private String name;
|
private boolean leaf = false;
|
private boolean showCheckbox = false;
|
private boolean checked = false;
|
private List<Tree> children = new ArrayList();
|
private String icon;
|
private String iconCls;
|
private String parentId;
|
private String parentName;
|
private String parentBtmName;
|
private boolean expanded = false;
|
private String href;
|
private String index;
|
private Map<String, String> attributes = new HashMap();
|
|
public String getOid() {
|
return oid;
|
}
|
|
public void setOid(String oid) {
|
this.oid = oid;
|
}
|
|
public String getText() {
|
return text;
|
}
|
|
public void setText(String text) {
|
this.text = text;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public boolean isLeaf() {
|
return leaf;
|
}
|
|
public void setLeaf(boolean leaf) {
|
this.leaf = leaf;
|
}
|
|
public boolean isShowCheckbox() {
|
return showCheckbox;
|
}
|
|
public void setShowCheckbox(boolean showCheckbox) {
|
this.showCheckbox = showCheckbox;
|
}
|
|
public boolean isChecked() {
|
return checked;
|
}
|
|
public void setChecked(boolean checked) {
|
this.checked = checked;
|
}
|
|
public List<Tree> getChildren() {
|
return children;
|
}
|
|
public void setChildren(List<Tree> children) {
|
this.children = children;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public String getIconCls() {
|
return iconCls;
|
}
|
|
public void setIconCls(String iconCls) {
|
this.iconCls = iconCls;
|
}
|
|
public String getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(String parentId) {
|
this.parentId = parentId;
|
}
|
|
public String getParentName() {
|
return parentName;
|
}
|
|
public void setParentName(String parentName) {
|
this.parentName = parentName;
|
}
|
|
public String getParentBtmName() {
|
return parentBtmName;
|
}
|
|
public void setParentBtmName(String parentBtmName) {
|
this.parentBtmName = parentBtmName;
|
}
|
|
public boolean isExpanded() {
|
return expanded;
|
}
|
|
public void setExpanded(boolean expanded) {
|
this.expanded = expanded;
|
}
|
|
public String getHref() {
|
return href;
|
}
|
|
public void setHref(String href) {
|
this.href = href;
|
}
|
|
public String getIndex() {
|
return index;
|
}
|
|
public void setIndex(String index) {
|
this.index = index;
|
}
|
|
public Map<String, String> getAttributes() {
|
return attributes;
|
}
|
|
public void setAttributes(Map<String, String> attributes) {
|
this.attributes = attributes;
|
}
|
|
@Override
|
public String toString() {
|
return "ReferDataObject{" +
|
"oid='" + oid + '\'' +
|
", text='" + text + '\'' +
|
", name='" + name + '\'' +
|
", leaf=" + leaf +
|
", showCheckbox=" + showCheckbox +
|
", checked=" + checked +
|
", children=" + children +
|
", icon='" + icon + '\'' +
|
", iconCls='" + iconCls + '\'' +
|
", parentId='" + parentId + '\'' +
|
", parentName='" + parentName + '\'' +
|
", parentBtmName='" + parentBtmName + '\'' +
|
", expanded=" + expanded +
|
", href='" + href + '\'' +
|
", index='" + index + '\'' +
|
", attributes=" + attributes +
|
'}';
|
}
|
}
|