01: /* Generated By:JJTree: Do not edit this line. ASTInItem.java */
02:
03: package org.objectweb.speedo.query.ejb.parser;
04:
05: public class ASTInItem extends SimpleNode {
06: public ASTInItem(int id) {
07: super (id);
08: }
09:
10: public ASTInItem(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: }
|