EchoPoint API - 3.0.0b5
App Webcontainer

Uses of Interface
echopoint.tree.MutableTreeNode

Packages that use MutableTreeNode
echopoint.tree Default tree model and nodes based on the original EchoPointNG implementation. 
 

Uses of MutableTreeNode in echopoint.tree
 

Classes in echopoint.tree that implement MutableTreeNode
 class DefaultMutableTreeNode<M>
          A DefaultMutableTreeNode is a general-purpose node in a tree data structure.
 

Fields in echopoint.tree declared as MutableTreeNode
protected  MutableTreeNode DefaultMutableTreeNode.parent
          this node's parent, or null if this node has no parent
 

Methods in echopoint.tree with parameters of type MutableTreeNode
 void DefaultMutableTreeNode.add(MutableTreeNode newChild)
          Removes newChild from its parent and makes it a child of this node by adding it to the end of this node's child array.
 void MutableTreeNode.insert(MutableTreeNode child, int index)
          Adds child to the receiver at index.
 void DefaultMutableTreeNode.insert(MutableTreeNode newChild, int childIndex)
          Removes newChild from its present parent (if it has a parent), sets the child's parent to this node, and then adds the child to this node's child array at index childIndex.
 void MutableTreeNode.remove(MutableTreeNode node)
          Removes node from the receiver.
 void DefaultMutableTreeNode.remove(MutableTreeNode aChild)
          Removes aChild from this node's child array, giving it a null parent.
 void MutableTreeNode.setParent(MutableTreeNode newParent)
          Sets the parent of the receiver to newParent.
 void DefaultMutableTreeNode.setParent(MutableTreeNode newParent)
          Sets this node's parent to newParent but does not change the parent's child array.
 


EchoPoint API - 3.0.0b5
App Webcontainer