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
010    public TObjectName getTypeName() {
011        return typeName;
012    }
013
014    public ArrayList<TAlterTypeOption> getAlterTypeOptionList() {
015        return alterTypeOptionList;
016    }
017
018    public void init(Object arg1, Object arg2) {
019        this.typeName = (TObjectName) arg1;
020        this.alterTypeOptionList = (ArrayList<TAlterTypeOption>) arg2;
021    }
022
023    
024    
025}