1 16 17 18 package org.apache.commons.jexl.parser; 19 20 24 public interface Node { 25 26 30 void jjtOpen(); 31 32 35 void jjtClose(); 36 37 41 void jjtSetParent(Node n); 42 43 47 Node jjtGetParent(); 48 49 55 void jjtAddChild(Node n, int i); 56 57 63 Node jjtGetChild(int i); 64 65 69 int jjtGetNumChildren(); 70 71 77 Object jjtAccept(ParserVisitor visitor, Object data); 78 } 79 | Popular Tags |