Method Summary |
|
public Object | jjtAccept(SyntaxTreeBuilderVisitor visitor, Object data) Accept the visitor. |
public void | jjtAddChild(Node n, int i) This method tells the node to add its argument to the node's list of
children. |
public void | jjtAppendChild(Node n) Adds the supplied node as the last child node to this node. |
public void | jjtClose() This method is called after all the child nodes have been added. |
public Node | jjtGetChild(int i) This method returns a child node. |
public int | jjtGetNumChildren() Return the number of children the node has. |
public Node | jjtGetParent() |
public void | jjtInsertChild(Node n, int i) Adds the supplied node as the i'th child node to this node. |
public void | jjtOpen() This method is called after the node has been made the current node. |
public void | jjtReplaceChild(Node oldNode, Node newNode) Replaces a child node with a new node. |
public void | jjtSetParent(Node n) This pair of methods are used to inform the node of its parent. |