import org.w3c.dom.Document;
import org.w3c.dom.Element;
publicclass Util{
/**
* Cre un lment avec un Text Node comme enfant.
*
* @param doc
* @param tagName
* @param text
* @return
*/
publicstatic Element createElementWithText(final Document doc,
final String tagName, final String text) {
Element e = doc.createElement(tagName);
e.appendChild(doc.createTextNode(text));
return e;
}
}