01: /* Generated By:JJTree: Do not edit this line. ASTId.java */
02:
03: package org.netbeans.performance.bde.generated;
04:
05: public class ASTId extends SimpleNode {
06: public ASTId(int id) {
07: super (id);
08: }
09:
10: public ASTId(BDEParser p, int id) {
11: super (p, id);
12: }
13:
14: /** Accept the visitor. **/
15: public Object jjtAccept(BDEParserVisitor visitor, Object data)
16: throws Exception {
17: return visitor.visit(this, data);
18: }
19: }
|