Here you can find the source of setAttribute(Element aElement, String aAttributeName, String aValue)
Parameter | Description |
---|---|
aElement | a parameter |
aAttributeName | a parameter |
aValue | a parameter |
public static void setAttribute(Element aElement, String aAttributeName, String aValue)
//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); } } }