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. ASTCflow.java */6 7 package com.tc.aspectwerkz.expression.ast;8 9 public class ASTCflow extends SimpleNode {10 public ASTCflow(int id) {11 super(id);12 }13 14 public ASTCflow(ExpressionParser p, int id) {15 super(p, id);16 }17 18 /**19 * Accept the visitor. *20 */21 public Object jjtAccept(ExpressionParserVisitor visitor, Object data) {22 return visitor.visit(this, data);23 }24 }