Java XML Attribute Add addAttribute(Document doc, Element node, String name, String value)

Here you can find the source of addAttribute(Document doc, Element node, String name, String value)

Description

add Attribute

License

Open Source License

Declaration

public static void addAttribute(Document doc, Element node, String name, String value) 

Method Source Code

//package com.java2s;

import org.w3c.dom.Attr;
import org.w3c.dom.Document;
import org.w3c.dom.Element;

public class Main {
    public static void addAttribute(Document doc, Element node, String name, String value) {
        Attr attribute = doc.createAttribute(name);
        attribute.setValue(value);//w  w  w  .  j a  v a 2s .  c o m
        node.getAttributes().setNamedItem(attribute);
    }
}

Related

  1. addAllElementsWithAttrId(final List list, final Element element, final String namespace)
  2. addArrayAnyTypeAttribute(Element element, Collection col)
  3. addArrayOffsetAttribute(Element element, int offset)
  4. addAttrDirect(Map values, Element el)
  5. addAttribute(Document doc, Element node, String name, String value)
  6. addAttribute(Document doc, Element parent, String attribute, Object value)
  7. addAttribute(Document doc, Node parentNode, String name, String content)
  8. addAttribute(Document doc, org.w3c.dom.Element e, String index, String value)