Package org.teamapps.ux.component.tree
Interface TreeNodeInfo
-
- All Known Subinterfaces:
TreeNode
- All Known Implementing Classes:
BaseTemplateTreeNode,TreeNodeInfoImpl
public interface TreeNodeInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.ObjectgetParent()booleanisExpanded()Wheter or not this node is initially expanded.booleanisLazyChildren()Whether or not this node has children that are not sent to the client directly but need to be lazy-loaded.default booleanisSelectable()Whether or not this node is selectable by the user.
-
-
-
Method Detail
-
getParent
java.lang.Object getParent()
-
isSelectable
default boolean isSelectable()
Whether or not this node is selectable by the user.
-
isExpanded
boolean isExpanded()
Wheter or not this node is initially expanded. The user can of course change the expansion state.
-
isLazyChildren
boolean isLazyChildren()
Whether or not this node has children that are not sent to the client directly but need to be lazy-loaded.
-
-