ASTWhere.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.ejb.plugins.cmp.ejbql; /** * This abstract syntax node represents a where clause. * * @author <a href="mailto:dain@daingroup.com">Dain Sundstrom</a> * @version $Revision: 1.3 $ */ public final class ASTWhere extends SimpleNode { public ASTWhere(int id) { super(id); } /** Accept the visitor. **/ public Object jjtAccept(JBossQLParserVisitor visitor, Object data) { return visitor.visit(this, data); } }
ASTWhere.java |