001package gudusoft.gsqlparser.nodes;
002/*
003 * Date: 2010-9-25
004 * Time: 17:18:44
005 */
006
007public class TDatatypeAttributeList extends TParseTreeNodeList <TDatatypeAttribute>{
008    public TDatatypeAttributeList()
009    {
010    }
011
012    public void addDatatypeAttribute(TDatatypeAttribute a)
013    {
014        addElement(a);
015    }
016
017    public TDatatypeAttribute getDatatypeAttribute(int position)
018    {
019        if (position < size())
020        {
021            return (TDatatypeAttribute)elementAt(position);
022        }else{
023        return null;
024        }
025    }
026
027    void addParseTreeNode(Object arg1){
028        addDatatypeAttribute((TDatatypeAttribute)arg1);
029    }
030
031
032}