1 /*2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.3 */4 5 /* Generated By:JJTree: Do not edit this line. ASTIf.java */6 7 package com.tc.aspectwerkz.expression.ast;8 9 public class ASTIf extends SimpleNode {10 public ASTIf(int id) {11 super(id);12 }13 14 public ASTIf(ExpressionParser p, int id) {15 super(p, id);16 }17 18 19 /**20 * Accept the visitor. *21 */22 public Object jjtAccept(ExpressionParserVisitor visitor, Object data) {23 return visitor.visit(this, data);24 }25 }26