001package gudusoft.gsqlparser.nodes; 002 003import java.util.ArrayList; 004 005 006public class TAlterTypeSqlNode extends TParseTreeNode { 007 private TObjectName typeName; 008 private ArrayList<TAlterTypeOption> alterTypeOptionList; 009 private boolean ifExists; 010 011 public TObjectName getTypeName() { 012 return typeName; 013 } 014 015 public ArrayList<TAlterTypeOption> getAlterTypeOptionList() { 016 return alterTypeOptionList; 017 } 018 019 public boolean isIfExists() { 020 return ifExists; 021 } 022 023 public void setIfExists(boolean ifExists) { 024 this.ifExists = ifExists; 025 } 026 027 public void init(Object arg1, Object arg2) { 028 this.typeName = (TObjectName) arg1; 029 this.alterTypeOptionList = (ArrayList<TAlterTypeOption>) arg2; 030 } 031 032 033 034}