Set an Attribute in an Element : DOM Attribute « XML « Java






Set an Attribute in an Element

  
import org.w3c.dom.Element;

public class Utils {
  /**
   * Set an Attribute in an Element
   * @param element the containing Element
   * @param name the attribute name
   * @param value the attribute value
   */
  public static void setAttribute(Element element, String name, String value) {
    element.setAttribute(name, value);
  }
}

   
    
  








Related examples in the same category

1.Get all the attributes for an Element
2.Get attribute's value
3.Return the right attribute node
4.Return the value of the attribute of the given element with the given name
5.Output XML element Attributes
6.Set Attribute
7.Copy the attribues on one element to the other
8.Get Attribute
9.Get Attribute by QName
10.Get an Attribute from an Element. Returns an empty String if none found
11.remove Attribute
12.Find Container With Attribute Value Or Create
13.Find Container With Attribute Value Or Create And Set
14.Find the first direct child with a given attribute.
15.Recursive method to find a given attribute value
16.Returns null, not "", for a nonexistent attribute
17.Retutns the value of the named attribute of the given element.
18.An Attributes implementation that can perform more operations than the attribute list helper supplied with the standard SAX2 distribution.