Lines Matching refs:Node
27 public abstract class SimpleNode implements Node {
28 protected Node parent;
29 protected Node[] children;
51 public void jjtSetParent(Node n) { parent = n; }
52 public Node jjtGetParent() { return parent; }
54 public void jjtAddChild(Node n, int i) {
56 children = new Node[i + 1];
58 Node c[] = new Node[i + 1];
65 public Node jjtGetChild(int i) {
74 customize the way the node appears when the tree is dumped. If
83 /* Override this method if you want to customize how the node dumps