Here you can find the source of addAttribute(Element elem, String name, String value)
public static void addAttribute(Element elem, String name, String value)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Element; public class Main { public static void addAttribute(Element elem, String name, String value) { elem.setAttribute(name, value);//from w ww. java 2 s. c o m } }