Package org.teamapps.ux.component.tree
Schnittstelle TreeNodeInfo
- Alle bekannten Unterschnittstellen:
TreeNode
- Alle bekannten Implementierungsklassen:
BaseTemplateTreeNode,TreeNodeInfoImpl
public interface TreeNodeInfo
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleanWheter 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.
-
Methodendetails
-
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.
-