|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
T
- the actual implementation type of this MutableBinaryTreeNodepublic interface MutableBinaryTreeNode<T extends MutableBinaryTreeNode<T>>
A MutableTreeNode
specialization also satisfying the BinaryTreeNode
interface
and providing mutability methods.
Method Summary | |
---|---|
void |
setLeft(T node)
Sets the left child node to the given node. |
void |
setRight(T node)
Sets the right child node to the given node. |
Methods inherited from interface org.parboiled.trees.BinaryTreeNode |
---|
left, right |
Methods inherited from interface org.parboiled.trees.MutableTreeNode |
---|
addChild, removeChild, setChild |
Methods inherited from interface org.parboiled.trees.TreeNode |
---|
getParent |
Methods inherited from interface org.parboiled.trees.GraphNode |
---|
getChildren |
Method Detail |
---|
void setLeft(T node)
node
- the node to set as left childvoid setRight(T node)
node
- the node to set as right child
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |