Java XML Attribute Set setAttribute(Element element, String attributeName, String value)

Here you can find the source of setAttribute(Element element, String attributeName, String value)

Description

set Attribute

License

Open Source License

Declaration

public static void setAttribute(Element element, String attributeName, String value) 

Method Source Code

//package com.java2s;

import org.w3c.dom.*;

public class Main {
    public static void setAttribute(Element element, String attributeName, String value) {
        if (value != null) {
            element.setAttribute(attributeName, value);
        }/*from  ww  w  .j  a  va2 s.  c o m*/
    }
}

Related

  1. attributeStringValue(Element e, String attr, String defaultValue)
  2. setAttribute(Element aElement, String aAttributeName, String aValue)
  3. setAttribute(Element elem, String name, String value)
  4. setAttribute(Element element, String attribute, String attributeValue, String attributeDefaultValue)
  5. setAttribute(Element element, String attributeName, String attributeValue)
  6. setAttribute(Element element, String attrName, Object value)
  7. setAttribute(Element element, String name, String value)
  8. setAttribute(Element targetElem, String name, String value)
  9. setAttribute(final Element element, final String attrName, final Object value)