Util.java Source code

Java tutorial

Introduction

Here is the source code for Util.java

Source

import org.w3c.dom.Document;
import org.w3c.dom.Element;

public class Util {

    /**
     * Cre un lment avec un Text Node comme enfant.
     * 
     * @param doc
     * @param tagName
     * @param text
     * @return
     */
    public static Element createElementWithText(final Document doc, final String tagName, final String text) {
        Element e = doc.createElement(tagName);
        e.appendChild(doc.createTextNode(text));
        return e;
    }

}