com.gs.obevo.db.sqlparser.syntaxparser.ASTCreateTable Maven / Gradle / Ivy
/* Generated By:JJTree: Do not edit this line. ASTCreateTable.java Version 4.3 */
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=true,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=*,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
package com.gs.obevo.db.sqlparser.syntaxparser;
public
class ASTCreateTable extends SimpleNode {
public ASTCreateTable(int id) {
super(id);
}
public ASTCreateTable(SqlParser p, int id) {
super(p, id);
}
public static Node jjtCreate(int id) {
return new ASTCreateTable(id);
}
public static Node jjtCreate(SqlParser p, int id) {
return new ASTCreateTable(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(SqlParserVisitor visitor, Object data) {
return visitor.visit(this, data);
}
}
/* JavaCC - OriginalChecksum=63eec4194df151c468ac9e489c2bcb11 (do not edit this line) */
© 2015 - 2024 Weber Informatics LLC | Privacy Policy