1 /* Generated By:JJTree: Do not edit this line. ASTAnd.java */2 3 package org.codehaus.aspectwerkz.expression.ast;4 5 public class ASTAnd extends SimpleNode {6 public ASTAnd(int id) {7 super(id);8 }9 10 public ASTAnd(ExpressionParser p, int id) {11 super(p, id);12 }13 14 /**15 * Accept the visitor. *16 */17 public Object jjtAccept(ExpressionParserVisitor visitor, Object data) {18 return visitor.visit(this, data);19 }20 }