Java XML Child Element Create addChildElementValue(Element element, String childElementName, String childElementValue, Document document)

Here you can find the source of addChildElementValue(Element element, String childElementName, String childElementValue, Document document)

Description

Creates a child element with the given name and appends it to the element child node list.

License

Apache License

Declaration

public static Element addChildElementValue(Element element, String childElementName, String childElementValue,
        Document document) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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./*w  w  w.  j  a  va 2s.  c  o  m*/
 *******************************************************************************/

import org.w3c.dom.Document;

import org.w3c.dom.Element;

public class Main {
    /** Creates a child element with the given name and appends it to the element child node list.
     *  Also creates a Text node with the given value and appends it to the new elements child node list.
     */
    public static Element addChildElementValue(Element element, String childElementName, String childElementValue,
            Document document) {
        Element newElement = addChildElement(element, childElementName, document);

        newElement.appendChild(document.createTextNode(childElementValue));
        return newElement;
    }

    /** Creates a child element with the given name and appends it to the element child node list. */
    public static Element addChildElement(Element element, String childElementName, Document document) {
        Element newElement = document.createElement(childElementName);

        element.appendChild(newElement);
        return newElement;
    }
}

Related

  1. addChildElement(Document doc, Node parent, String tag)
  2. addChildElement(Document document, String elementName, Node parentNode)
  3. addChildElement(Element element, String childElementName, Document document)
  4. addChildElementNSElement(Element element, String childElementName, Document document, String nameSpaceUrl)
  5. addChildElementValue(Element element, String childElementName, String childElementValue, Document document)
  6. addChildEpcList(final Document document, final Element root, final String childEPCs)
  7. addChildNode(Document doc, Node parentNode, String childName, String childValue)
  8. addChildText(Document doc, Element parent, String textValue)
  9. addElement(Document doc, Element parent, String nodeName)