001 /* Generated By:JJTree: Do not edit this line. ASTWhileStatement.java Version 4.3 */ 002 /* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */ 003 package org.apache.commons.jexl2.parser; 004 005 public 006 class ASTWhileStatement extends JexlNode { 007 public ASTWhileStatement(int id) { 008 super(id); 009 } 010 011 public ASTWhileStatement(Parser p, int id) { 012 super(p, id); 013 } 014 015 016 /** Accept the visitor. **/ 017 public Object jjtAccept(ParserVisitor visitor, Object data) { 018 return visitor.visit(this, data); 019 } 020 } 021 /* JavaCC - OriginalChecksum=1968a8f6c9f2ee8990d893a3b04f315d (do not edit this line) */