public void ReplacemirrorsAt(mirrorsType newValue, int index)
 {
     ReplaceDomElementAt("", "mirrors", index, newValue);
 }
 public void Addmirrors(mirrorsType newValue)
 {
     AppendDomElement("", "mirrors", newValue);
 }
 public void InsertmirrorsAt(mirrorsType newValue, int index)
 {
     InsertDomElementAt("", "mirrors", index, newValue);
 }