Java Utililty Methods XML Attribute Delete

List of utility methods to do XML Attribute Delete

Description

The list of methods to do XML Attribute Delete are organized into topic(s).

Method

booleandeleteAttribute(Node n, String name)
delete Attribute
if (n == null || name == null)
    return false;
if (n instanceof Element) {
    ((Element) n).removeAttribute(name);
    return true;
return false;