void setAttributeNS(Element element, String ns, String name, String value)

Source

void setAttributeNS(Element element, String ns, String name, String value) {
  element.setAttributeNS(ns, name, value);
}