Java XML Attribute Set setAttribute(Element aElement, String aAttributeName, String aValue)

Here you can find the source of setAttribute(Element aElement, String aAttributeName, String aValue)

Description

Sets the given attribute value.

License

Open Source License

Parameter

Parameter Description
aElement a parameter
aAttributeName a parameter
aValue a parameter

Declaration

public static void setAttribute(Element aElement,
        String aAttributeName, String aValue) 

Method Source Code

//package com.java2s;

import org.w3c.dom.Element;

public class Main {
    /**/*  www.  jav  a 2 s .  co m*/
     * Sets the given attribute value.
     *
     * @param aElement
     * @param aAttributeName
     * @param aValue
     */
    public static void setAttribute(Element aElement,
            String aAttributeName, String aValue) {
        if (aValue != null) {
            aElement.setAttribute(aAttributeName, aValue);
        }
    }
}

Related

  1. attributes(final Element element)
  2. attributesAsMap(Element element)
  3. attributesOf(Element element)
  4. attributeString(Node node, String attributeName)
  5. attributeStringValue(Element e, String attr, String defaultValue)
  6. setAttribute(Element elem, String name, String value)
  7. setAttribute(Element element, String attribute, String attributeValue, String attributeDefaultValue)
  8. setAttribute(Element element, String attributeName, String attributeValue)
  9. setAttribute(Element element, String attributeName, String value)