Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

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

public class Main {
    /**
     * Given a certain parent {@link Element} and {@link Document}, append a
     * child {@link Element} with Tag Name (which cannot be null), Node
     * Attribute Name, Node Attribute Value (which both are null at the same
     * time or none is null at all), Node Value (which can be null).
     * 
     * @param nodeTagName
     *            Node Tag Name.
     * @param nodeAttributeName
     *            Node Attribute Name.
     * @param nodeAttributeValue
     *            Node Attribute Value.
     * @param nodeValue
     *            Node Value.
     * @param elementToBeApppendedTo
     *            Parent {@link Element} which the new created {@link Element}
     *            will be appended to.
     * @param document
     *            {@link Document} which everything belongs to.
     * 
     * @return Returns the created {@link Element}.
     */
    private static Element appendNewElementToNode(String nodeTagName, String nodeAttributeName,
            String nodeAttributeValue, String nodeValue, Element elementToBeApppendedTo, Document document) {
        // create element and append it
        Element element = document.createElement(nodeTagName);
        if ((nodeAttributeName != null) && (nodeAttributeValue != null)) {
            element.setAttribute(nodeAttributeName, nodeAttributeValue);
        }
        if (nodeValue != null) {
            element.setTextContent(nodeValue);
        }
        elementToBeApppendedTo.appendChild(element);

        return element;
    }
}