001package gudusoft.gsqlparser.nodes; 002 003public class TCreateTypeSqlNode extends TParseTreeNode{ 004 private TObjectName typeName; 005 private TColumnDefinitionList attributeList; 006 007 public TObjectName getTypeName() { 008 return typeName; 009 } 010 011 public TColumnDefinitionList getAttributeList() { 012 return attributeList; 013 } 014 015 public void init(Object arg1){ 016 this.typeName = (TObjectName)arg1; 017 018 } 019 020 public void init(Object arg1, Object arg2){ 021 this.typeName = (TObjectName)arg1; 022 this.attributeList = (TColumnDefinitionList)arg2; 023 } 024}