Uses of Interface
edu.wpi.ebob.internal.inspect.Node

Packages that use Node
edu.wpi.ebob.internal.inspect   
 

Uses of Node in edu.wpi.ebob.internal.inspect
 

Subinterfaces of Node in edu.wpi.ebob.internal.inspect
 interface ModifiableNode
          An interface that potentially modifiable objects can implement.
 

Classes in edu.wpi.ebob.internal.inspect that implement Node
 class AbstractNode
           
 class ArrayItemNode
           
 class FieldNode
          represents a IFieldin a tree.
 class InstanceNode
          represents an Instancein a tree.
 class ReturnValueNode
          A Return value node represents an object that is returned from a computation, which can be unnamed.
 class RootNode
          Represents the very top node in the table tree viewer in PropertiesView.
 

Fields in edu.wpi.ebob.internal.inspect declared as Node
private  Node AbstractNode.parent
          the parent of this node
 

Methods in edu.wpi.ebob.internal.inspect that return Node
 Node[] ReturnValueNode.getChildren()
           
 Node[] Node.getChildren()
          returns the child nodes of this node, represented as objects.
 Node[] InstanceNode.getChildren()
           
 Node[] FieldNode.getChildren()
           
 Node[] ArrayItemNode.getChildren()
           
 Node[] AbstractNode.getChildren()
           
 Node Node.getParent()
          the parent node of this node.
 Node AbstractNode.getParent()
           
 

Methods in edu.wpi.ebob.internal.inspect with parameters of type Node
protected  void AbstractNode.addChild(Node child)
          adds child as a child node of the current node, and sets its parent to this.
 void Node.setParent(Node parent)
          sets the parent of this node to be parent.
 void AbstractNode.setParent(Node parent)