Interface MutableTreeNode
- All Superinterfaces:
TreeNode
- All Known Implementing Classes:
DefaultMutableTreeNode, JTree.DynamicUtilTreeNode
Defines the requirements for a tree node object that can change --
by adding or removing child nodes, or by changing the contents
of a user object stored in the node.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidinsert(MutableTreeNode child, int index) Addschildto the receiver atindex.voidremove(int index) Removes the child atindexfrom the receiver.voidremove(MutableTreeNode node) Removesnodefrom the receiver.voidRemoves the receiver from its parent.voidsetParent(MutableTreeNode newParent) Sets the parent of the receiver tonewParent.voidsetUserObject(Object object) Resets the user object of the receiver toobject.Methods declared in interface TreeNode
children, getAllowsChildren, getChildAt, getChildCount, getIndex, getParent, isLeafModifier and TypeMethodDescriptionEnumeration<? extends TreeNode> children()Returns the children of the receiver as anEnumeration.booleanReturns true if the receiver allows children.getChildAt(int childIndex) Returns the childTreeNodeat indexchildIndex.intReturns the number of childrenTreeNodes the receiver contains.intReturns the index ofnodein the receivers children.Returns the parentTreeNodeof the receiver.booleanisLeaf()Returns true if the receiver is a leaf.
-
Method Details
-
insert
Addschildto the receiver atindex.childwill be messaged withsetParent.- Parameters:
child- node to be addedindex- index of the receiver
-
remove
void remove(int index) Removes the child atindexfrom the receiver.- Parameters:
index- index of child to be removed
-
remove
Removesnodefrom the receiver.setParentwill be messaged onnode.- Parameters:
node- node to be removed from the receiver
-
setUserObject
Resets the user object of the receiver toobject.- Parameters:
object- object to be set as a receiver
-
removeFromParent
void removeFromParent()Removes the receiver from its parent. -
setParent
Sets the parent of the receiver tonewParent.- Parameters:
newParent- node to be set as parent of the receiver
-