ca.quine.jcommons.sourceexporter.test
Class Node

java.lang.Object
  |
  +--ca.quine.jcommons.sourceexporter.test.Node

public class Node
extends Object


Constructor Summary
Node()
           
Node(Node parentNode, String nodeName)
           
Node(String nodeName)
           
 
Method Summary
 Node getLeftChild()
           
 String getNodeName()
           
 Node getParentNode()
           
 Node getRightChild()
           
 void setLeftChild(Node leftChild)
           
 void setNodeName(String nodeName)
           
 void setParentNode(Node parentNode)
           
 void setRightChild(Node rightChild)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Node

public Node()

Node

public Node(String nodeName)

Node

public Node(Node parentNode,
            String nodeName)
Method Detail

getLeftChild

public Node getLeftChild()

setLeftChild

public void setLeftChild(Node leftChild)

getNodeName

public String getNodeName()

setNodeName

public void setNodeName(String nodeName)

getParentNode

public Node getParentNode()

setParentNode

public void setParentNode(Node parentNode)

getRightChild

public Node getRightChild()

setRightChild

public void setRightChild(Node rightChild)