Java javax.swing.tree MutableTreeNode fields, constructors, methods, implement or subclass

Example usage for Java javax.swing.tree MutableTreeNode fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing.tree MutableTreeNode.

The text is from its open source code.

Implementation

javax.swing.tree.MutableTreeNode has the following implementations.
Click this link to see all its implementation.

Method

TreeNodegetChildAt(int childIndex)
Returns the child TreeNode at index childIndex.
intgetChildCount()
Returns the number of children TreeNodes the receiver contains.
intgetIndex(TreeNode node)
Returns the index of node in the receivers children.
TreeNodegetParent()
Returns the parent TreeNode of the receiver.
voidinsert(MutableTreeNode child, int index)
Adds child to the receiver at index.
voidremove(int index)
Removes the child at index from the receiver.
voidremove(MutableTreeNode node)
Removes node from the receiver.
voidsetParent(MutableTreeNode newParent)
Sets the parent of the receiver to newParent.
StringtoString()
Returns a string representation of the object.