import org.w3c.dom.Element;
publicclass Utils {
/**
* Set an Attribute in an Element
* @param element the containing Element
* @param name the attribute name
* @param value the attribute value
*/
publicstaticvoid setAttribute(Element element, String name, String value) {
element.setAttribute(name, value);
}
}