01: /* Generated By:JJTree: Do not edit this line. ASTArithmeticTerm.java */
02:
03: package org.objectweb.speedo.query.ejb.parser;
04:
05: public class ASTArithmeticTerm extends SimpleNode {
06: public ASTArithmeticTerm(int id) {
07: super (id);
08: }
09:
10: public ASTArithmeticTerm(EJBQL p, int id) {
11: super (p, id);
12: }
13:
14: /** Accept the visitor. **/
15: public Object jjtAccept(EJBQLVisitor visitor, Object data) {
16: return visitor.visit(this, data);
17: }
18: }
|