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 List<JsonNodeData>childrenstatic StringCURRENT_PATHprotected StringcurrentPathprotected Stringexcerptprotected booleanhasChildprotected booleanisExpandedprotected booleanisLastNodeprotected booleanisRetrictedprotected booleanisSelectableprotected booleanisSelectedprotected Stringnameprotected TreeNodeTypenodeTypeprotected StringnoteIdprotected Stringpath
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<JsonNodeData>getChildren()StringgetCurrentPath()StringgetExcerpt()StringgetName()TreeNodeTypegetNodeType()StringgetNoteId()StringgetPath()booleanisExpanded()booleanisHasChild()booleanisLastNode()booleanisRetricted()booleanisSelectable()booleanisSelected()voidsetChildren(List<JsonNodeData> children)voidsetCurrentPath(String currentPath)voidsetExcerpt(String excerpt)voidsetExpanded(boolean isExpanded)voidsetHasChild(boolean hasChild)voidsetLastNode(boolean isLastNode)voidsetName(String name)voidsetNodeType(TreeNodeType nodeType)voidsetNoteId(String noteId)voidsetPath(String path)voidsetRetricted(boolean isRetricted)voidsetSelectable(boolean isSelectable)voidsetSelected(boolean isSelected)
-
-
-
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
-
isLastNode
protected boolean isLastNode
-
isSelectable
protected boolean isSelectable
-
isRetricted
protected boolean isRetricted
-
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
-
children
public List<JsonNodeData> children
-
-
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)
-
isRetricted
public boolean isRetricted()
-
setRetricted
public void setRetricted(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)
-
getNoteId
public String getNoteId()
-
setNoteId
public void setNoteId(String noteId)
-
-