public void replacenameAt(SchemaNCName value, int index) {
   replaceDomChildAt(Attribute, null, "name", index, value.toString());
 }
 public void insertnameAt(SchemaNCName value, int index) {
   insertDomChildAt(Attribute, null, "name", index, value.toString());
 }
 public void replaceparamAt(SchemaNCName value, int index) {
   replaceDomChildAt(
       Element, "http://www.collada.org/2005/11/COLLADASchema", "param", index, value.toString());
 }
  public org.w3c.dom.Node addname(SchemaNCName value) {
    if (value.isNull()) return null;

    return appendDomChild(Attribute, null, "name", value.toString());
  }
  public org.w3c.dom.Node addparam(SchemaNCName value) {
    if (value.isNull()) return null;

    return appendDomChild(
        Element, "http://www.collada.org/2005/11/COLLADASchema", "param", value.toString());
  }