public interface ITreeNode extends java.io.Serializable
Modifier and Type | Method and Description |
---|---|
boolean |
containsChild(ITreeNode node)
Returns the true if current node contains received children, otherwise return false;
|
boolean |
getAllowsChildren()
Returns true if the receiver allows children.
|
int |
getChildCount()
Returns the number of children
ITreeNode s the receiver
contains. |
java.util.Collection |
getChildren()
Returns the
Collection of children. |
ITreeNode |
getParent()
Returns the parent
ITreeNode of the receiver. |
boolean |
isLeaf()
Returns true if the receiver is a leaf.
|
java.util.Collection getChildren()
Collection
of children.int getChildCount()
ITreeNode
s the receiver
contains.boolean containsChild(ITreeNode node)
boolean getAllowsChildren()
boolean isLeaf()