public interface TreeNode
Modifier and Type | Method and Description |
---|---|
java.util.List<? extends TreeNode> |
getChildren()
Returns this node children
|
java.lang.String |
getDetails()
Node details
|
java.lang.String |
getLinkPath()
Returns path to set in the link for this node, applicable for leaf nodes only.
|
java.lang.String |
getName()
Name of the node to show in tree
|
java.lang.String |
getNodeAttributes()
Returns the node attributes (besides href)
|
java.lang.String |
getNodeClass()
Returns node CSS class
|
boolean |
isCanHaveChildren()
Returns true if node can have children
|
@NotNull java.lang.String getName()
@Nullable java.lang.String getDetails()
boolean isCanHaveChildren()
@Nullable java.lang.String getLinkPath()
@Nullable java.util.List<? extends TreeNode> getChildren()
@Nullable java.lang.String getNodeClass()
@Nullable java.lang.String getNodeAttributes()