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