javacc-7.0.1.test.tmp.VTransformer.ASTSwitchStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javacc Show documentation
Show all versions of javacc Show documentation
JavaCC is a parser/scanner generator for Java.
/* Generated By:JJTree: Do not edit this line. ASTSwitchStatement.java Version 7.0 */
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=*,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
public
class ASTSwitchStatement extends SimpleNode {
public ASTSwitchStatement(int id) {
super(id);
}
public ASTSwitchStatement(JavaParser p, int id) {
super(p, id);
}
public static Node jjtCreate(int id) {
return new ASTSwitchStatement(id);
}
public static Node jjtCreate(JavaParser p, int id) {
return new ASTSwitchStatement(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(JavaParserVisitor visitor, Object data) {
return
visitor.visit(this, data);
}
}
/* JavaCC - OriginalChecksum=87215eae6d620eccfe65d2bfc6c52b1f (do not edit this line) */