Class TreeGraphNode<RECORD>
- java.lang.Object
-
- org.teamapps.ux.component.charting.tree.BaseTreeGraphNode<RECORD>
-
- org.teamapps.ux.component.charting.tree.TreeGraphNode<RECORD>
-
public class TreeGraphNode<RECORD> extends BaseTreeGraphNode<RECORD>
-
-
Constructor Summary
Constructors Constructor Description TreeGraphNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TreeGraphNode<RECORD>getParent()java.util.List<BaseTreeGraphNode<RECORD>>getSideListNodes()booleanisExpanded()booleanisHasLazyChildren()booleanisParentExpandable()booleanisParentExpanded()booleanisSideListExpanded()TreeGraphNode<RECORD>setExpanded(boolean expanded)TreeGraphNode<RECORD>setHasLazyChildren(boolean hasLazyChildren)TreeGraphNode<RECORD>setParent(TreeGraphNode<RECORD> parent)voidsetParentExpandable(boolean parentExpandable)voidsetParentExpanded(boolean parentExpanded)TreeGraphNode<RECORD>setSideListExpanded(boolean sideListExpanded)TreeGraphNode<RECORD>setSideListNodes(java.util.List<BaseTreeGraphNode<RECORD>> sideListNodes)-
Methods inherited from class org.teamapps.ux.component.charting.tree.BaseTreeGraphNode
getBackgroundColor, getBorderColor, getBorderRadius, getBorderWidth, getConnectorLineColor, getConnectorLineWidth, getDashArray, getHeight, getIcon, getId, getImage, getRecord, getTemplate, getWidth, setBackgroundColor, setBorderColor, setBorderRadius, setBorderWidth, setConnectorLineColor, setConnectorLineWidth, setDashArray, setHeight, setIcon, setImage, setRecord, setTemplate, setWidth
-
-
-
-
Method Detail
-
getParent
public TreeGraphNode<RECORD> getParent()
-
setParent
public TreeGraphNode<RECORD> setParent(TreeGraphNode<RECORD> parent)
-
isExpanded
public boolean isExpanded()
-
setExpanded
public TreeGraphNode<RECORD> setExpanded(boolean expanded)
-
isHasLazyChildren
public boolean isHasLazyChildren()
-
setHasLazyChildren
public TreeGraphNode<RECORD> setHasLazyChildren(boolean hasLazyChildren)
-
getSideListNodes
public java.util.List<BaseTreeGraphNode<RECORD>> getSideListNodes()
-
setSideListNodes
public TreeGraphNode<RECORD> setSideListNodes(java.util.List<BaseTreeGraphNode<RECORD>> sideListNodes)
-
isSideListExpanded
public boolean isSideListExpanded()
-
setSideListExpanded
public TreeGraphNode<RECORD> setSideListExpanded(boolean sideListExpanded)
-
isParentExpandable
public boolean isParentExpandable()
-
setParentExpandable
public void setParentExpandable(boolean parentExpandable)
-
isParentExpanded
public boolean isParentExpanded()
-
setParentExpanded
public void setParentExpanded(boolean parentExpanded)
-
-