package com.vci.rmip.code.client.codeapply.Apply410.object; import com.vci.ubcs.starter.web.pagemodel.Tree; import java.io.Serializable; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; 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 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 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 getChildren() { return children; } public void setChildren(List 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 getAttributes() { return attributes; } public void setAttributes(Map 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 + '}'; } }