All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gs.obevo.db.sqlparser.syntaxparser.ASTCreateTableColumnList Maven / Gradle / Ivy

There is a newer version: 8.2.1
Show newest version
/* Generated By:JJTree: Do not edit this line. ASTCreateTableColumnList.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 ASTCreateTableColumnList extends SimpleNode {
  public ASTCreateTableColumnList(int id) {
    super(id);
  }

  public ASTCreateTableColumnList(SqlParser p, int id) {
    super(p, id);
  }

  public static Node jjtCreate(int id) {
    return new ASTCreateTableColumnList(id);
  }

  public static Node jjtCreate(SqlParser p, int id) {
    return new ASTCreateTableColumnList(p, id);
  }

  /** Accept the visitor. **/
  public Object jjtAccept(SqlParserVisitor visitor, Object data) {
    return visitor.visit(this, data);
  }
}
/* JavaCC - OriginalChecksum=e03b8be9c8fbf8a4395a5076e6cc1c3c (do not edit this line) */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy