Java XML Child Element Create createChild(Document document, Node parent, String childNodeName)

Here you can find the source of createChild(Document document, Node parent, String childNodeName)

Description

create Child

License

Apache License

Declaration

public static Node createChild(Document document, Node parent, String childNodeName) 

Method Source Code

//package com.java2s;
/**/*from   w ww .  j  a  va 2 s.  c  o  m*/
 * Copyright Universite Joseph Fourier (www.ujf-grenoble.fr)
 * 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;

import org.w3c.dom.Node;

public class Main {
    public static Node createChild(Document document, Node parent, String childNodeName) {
        return createChildInternal(document, parent, childNodeName);
    }

    public static Node createChild(Document document, Node parent, String nodeName, String attrName,
            String attrValue) {
        return createChildInternal(document, parent, nodeName, attrName, attrValue);
    }

    public static Node createChild(Document document, Node parent, String nodeName, String attrName1,
            String attrValue1, String attrName2, String attrValue2) {
        return createChildInternal(document, parent, nodeName, attrName1, attrValue1, attrName2, attrValue2);
    }

    private static Node createChildInternal(Document document, Node parent, String nodeName,
            String... attr_name_and_value) {
        Element newNode = document.createElement(nodeName);

        for (int i = 0; i < attr_name_and_value.length; i += 2) {
            String attrName = attr_name_and_value[i];
            String attrValue = attr_name_and_value[i + 1];
            newNode.setAttribute(attrName, attrValue);
        }
        parent.appendChild(newNode);
        return newNode;
    }
}

Related

  1. addElementAndSetContent(Document doc, String name, Element parent, String text)
  2. addElementChildToElement(Document doc, Element parent, String elementName)
  3. addElementWithText(Document document, Element parentElement, String newElementName, String textString)
  4. appendDateNode(Document owner, Element appendElement, String name, Date date)
  5. createAndAppendChild(Element parentElement, String elementName, Properties attributes)
  6. createChild(Element el, String name, boolean attach)
  7. createChild(final Element el, final String name)
  8. createChild(Node node, String elemName)
  9. createChildElement(Document doc, Element parent, String name)