public void ReplacemirrorAt(mirrorType newValue, int index)
 {
     ReplaceDomElementAt("", "mirror", index, newValue);
 }
 public void Addmirror(mirrorType newValue)
 {
     AppendDomElement("", "mirror", newValue);
 }
 public void InsertmirrorAt(mirrorType newValue, int index)
 {
     InsertDomElementAt("", "mirror", index, newValue);
 }