Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
// Released under the terms of the CPL Common Public License version 1.0.

import org.w3c.dom.*;

public class Main {
    public static void addTextNode(Element element, String tagName, String value) {
        if (value != null && !(value.equals(""))) {
            Element titleElement = element.getOwnerDocument().createElement(tagName);
            titleElement.setTextContent(value);
            element.appendChild(titleElement);
        }
    }
}