Package org.exoplatform.wiki.tree
Class JsonNodeData
- java.lang.Object
-
- org.exoplatform.wiki.tree.JsonNodeData
-
public class JsonNodeData extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringCURRENT_PATHprotected StringcurrentPathprotected booleandisabledprotected Stringexcerptprotected booleanhasChildprotected booleanisDraftPageprotected booleanisExpandedprotected booleanisLastNodeprotected booleanisRestrictedprotected booleanisSelectableprotected booleanisSelectedprotected Stringnameprotected TreeNodeTypenodeTypeprotected StringnoteIdprotected Stringpath
-
Method Summary
-
-
-
Field Detail
-
name
protected String name
-
noteId
protected String noteId
-
path
protected String path
-
currentPath
protected String currentPath
-
hasChild
protected boolean hasChild
-
nodeType
protected TreeNodeType nodeType
-
isDraftPage
protected boolean isDraftPage
-
disabled
protected boolean disabled
-
isLastNode
protected boolean isLastNode
-
isSelectable
protected boolean isSelectable
-
isRestricted
protected boolean isRestricted
-
isExpanded
protected boolean isExpanded
-
isSelected
protected boolean isSelected
-
excerpt
protected String excerpt
-
CURRENT_PATH
public static final String CURRENT_PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
isHasChild
public boolean isHasChild()
-
setHasChild
public void setHasChild(boolean hasChild)
-
getNodeType
public TreeNodeType getNodeType()
-
setNodeType
public void setNodeType(TreeNodeType nodeType)
-
isLastNode
public boolean isLastNode()
-
setLastNode
public void setLastNode(boolean isLastNode)
-
isSelectable
public boolean isSelectable()
-
setSelectable
public void setSelectable(boolean isSelectable)
-
isRestricted
public boolean isRestricted()
-
setRestricted
public void setRestricted(boolean isRetricted)
-
getCurrentPath
public String getCurrentPath()
-
setCurrentPath
public void setCurrentPath(String currentPath)
-
isExpanded
public boolean isExpanded()
-
setExpanded
public void setExpanded(boolean isExpanded)
-
isSelected
public boolean isSelected()
-
setSelected
public void setSelected(boolean isSelected)
-
getExcerpt
public String getExcerpt()
-
setExcerpt
public void setExcerpt(String excerpt)
-
getChildren
public List<JsonNodeData> getChildren()
-
setChildren
public void setChildren(List<JsonNodeData> children)
-
getParentPageId
public String getParentPageId()
-
setParentPageId
public void setParentPageId(String parentPageId)
-
getNoteId
public String getNoteId()
-
setNoteId
public void setNoteId(String noteId)
-
isDraftPage
public boolean isDraftPage()
-
setDraftPage
public void setDraftPage(boolean draftPage)
-
isDisabled
public boolean isDisabled()
-
setDisabled
public void setDisabled(boolean disabled)
-
isHasDraftDescendant
public Boolean isHasDraftDescendant()
-
setHasDraftDescendant
public void setHasDraftDescendant(Boolean hasDraftDescendant)
-
-