public void ReplacetypeAt(typeType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString());
 }
 public void Addtype(typeType newValue)
 {
     AppendDomChild(NodeType.Attribute, "", "type", newValue.ToString());
 }
 public void InserttypeAt(typeType newValue, int index)
 {
     InsertDomChildAt(NodeType.Attribute, "", "type", index, newValue.ToString());
 }