Lines Matching refs:Node
18 /* Generated By:JJTree: Do not edit this line. Node.java */
27 public interface Node {
29 /** This method is called after the node has been made the current
30 node. It indicates that child nodes can now be added to it. */
37 /** This pair of methods are used to inform the node of its
39 public void jjtSetParent(Node n);
40 public Node jjtGetParent();
42 /** This method tells the node to add its argument to the node's
44 public void jjtAddChild(Node n, int i);
46 /** This method returns a child node. The children are numbered
48 public Node jjtGetChild(int i);
50 /** Return the number of children the node has. */