Represents a node of a tree. More...
Public Member Functions | |
| List< TreeNode< ObjectType > > | getChildren () |
| Child nodes of the tree node. | |
| ObjectType | getObject () |
| Object stored in the tree node. | |
| TreeNode< ObjectType > | getParent () |
| Parent node of the tree node. | |
| String | toString () |
| Printable representation of the tree node. | |
Represents a node of a tree.
| <ObjectType> | Type of the object stored in the node. |
| List<TreeNode<ObjectType> > BinNavi.API.helpers.TreeNode< ObjectType >.getChildren | ( | ) |
Returns the children of the tree node.
| ObjectType BinNavi.API.helpers.TreeNode< ObjectType >.getObject | ( | ) |
Returns the object stored in the tree node.
| TreeNode<ObjectType> BinNavi.API.helpers.TreeNode< ObjectType >.getParent | ( | ) |
Returns the parent of the tree node. If the node is the root node of the tree, the return value is null.
| String BinNavi.API.helpers.TreeNode< ObjectType >.toString | ( | ) |
Returns a string representation of the tree node.
1.7.1