Java Utililty Methods XML Attribute Add

List of utility methods to do XML Attribute Add

Description

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

Method

voidaddAttribute(Document document, Node node, String attName, String attValue)
add Attribute
Attr attr = document.createAttribute(attName);
attr.setNodeValue(removeXMLInvalidChars(attValue));
node.getAttributes().setNamedItem(attr);
voidaddAttribute(Document document, Node node, String name, String value)
add Attribute
if (value != null) {
    Attr attribute = document.createAttribute(name);
    attribute.setValue(value);
    node.getAttributes().setNamedItem(attribute);
voidaddAttribute(Document document, String AttribName, String attribValue, Element element)
Utility method to add an attribute to a given element
Attr attribute = document.createAttribute(AttribName);
attribute.setValue(attribValue);
element.setAttributeNode(attribute);
voidaddAttribute(Document xmlDoc, Node node, String attrName, String attrValue)
add Attribute
Attr newAtt = xmlDoc.createAttribute(attrName);
newAtt.setNodeValue(attrValue);
NamedNodeMap attrs = node.getAttributes();
attrs.setNamedItem(newAtt);
voidaddAttribute(Element el, String name, String val)
add Attribute
el.setAttributeNS(null, name, val);
voidaddAttribute(Element elem, String name, String value)
add Attribute
elem.setAttribute(name, value);
voidaddAttribute(final AttributesImpl attributes, final String localName, final Object value)
Adds attribute with localName to attributes if value is not null.
if (null != value) {
    attributes.addAttribute(XMLConstants.NULL_NS_URI, localName, localName, "", value.toString());
AttraddAttribute(final Document doc, final Element parent, final String name, final String value)
Adds an attribute to the specified document element.
Attr attr = doc.createAttribute(name);
attr.setNodeValue(value);
parent.setAttributeNode(attr);
return attr;
ElementaddAttribute(final Element element, final String attributeName, final String value)
add Attribute
element.setAttribute(attributeName, value);
return element;
voidaddAttribute(final Node e, final String name, final String value)
Add the specified attribute.
final Attr attr = e.getOwnerDocument().createAttribute(name);
attr.setValue(value);
e.getAttributes().setNamedItem(attr);