The removeAttribute method of the ElementImpl class contains the following signatures:
removeAttribute(String name)
removeAttribute(Name attrName)
Deletes an attribute from an element.
public void removeAttribute(String name);
name | The attribute to delete. |
Deletes an attribute from an element.
public void removeAttribute(Name attrName);
attrName | The attribute name to delete. |