예제 #1
0
        public IndexData(XmlElement indexElem)
        {
            String strType = indexElem.GetAttribute("type");

            if(!strType.Equals("uint") && !strType.Equals("ushort") && !strType.Equals("ubyte"))
                throw new Exception("Improper 'type' attribute value on 'index' element.");

            pAttribType = AttributesClass.GetAttribType(strType);

            //Parse text
            XmlNodeList nodes = indexElem.ChildNodes;

            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < nodes.Count; i++ )
            {
                XmlNode pChild = nodes[i];
                String next_value = pChild.Value;

                sb.Append(next_value);
            }

            dataArray = pAttribType.ParseFunc(sb);

            if(dataArray.Count == 0)
                throw new Exception("The index element must have an array of values.");
        }
예제 #2
0
 public IndexData(IndexData rhs)
 {
     pAttribType = rhs.pAttribType;
     dataArray = rhs.dataArray;
 }