public void ReplacelocationAt(locationType newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "location", index, newValue.ToString());
 }
 public void Addlocation(locationType newValue)
 {
     AppendDomChild(NodeType.Attribute, "", "location", newValue.ToString());
 }
 public void InsertlocationAt(locationType newValue, int index)
 {
     InsertDomChildAt(NodeType.Attribute, "", "location", index, newValue.ToString());
 }