Interface TreeNodeInfo
- All Known Subinterfaces:
TreeNode
- All Known Implementing Classes:
BaseTemplateTreeNode,TreeNodeInfoImpl
public interface TreeNodeInfo
-
Method Summary
Modifier and TypeMethodDescriptionbooleanWheter or not this node is initially expanded.booleanWhether or not this node has children that are not sent to the client directly but need to be lazy-loaded.default booleanWhether or not this node is selectable by the user.
-
Method Details
-
getParent
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.
-