Java XML Child Element Create addElement(final Document document, final Element parentDom, final String namespace, final String name)

Here you can find the source of addElement(final Document document, final Element parentDom, final String namespace, final String name)

Description

This method creates and adds a new XML Element

License

Open Source License

Parameter

Parameter Description
document root document
parentDom parent node
namespace namespace
name element name

Return

added element

Declaration

public static Element addElement(final Document document, final Element parentDom, final String namespace,
        final String name) 

Method Source Code

//package com.java2s;
/**/*from  ww w. j  a v  a2 s  .c o  m*/
 * DSS - Digital Signature Services
 * Copyright (C) 2015 European Commission, provided under the CEF programme
 *
 * This file is part of the "DSS - Digital Signature Services" project.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

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

public class Main {
    /**
     * This method creates and adds a new XML {@code Element}
     *
     * @param document  root document
     * @param parentDom parent node
     * @param namespace namespace
     * @param name      element name
     * @return added element
     */
    public static Element addElement(final Document document, final Element parentDom, final String namespace,
            final String name) {

        final Element dom = document.createElementNS(namespace, name);
        parentDom.appendChild(dom);
        return dom;
    }
}

Related

  1. addElement(Document doc, Node parent, String element)
  2. addElement(Document doc, String name, Element parent)
  3. addElement(Document document, Element father, String name, String attOneName, String attOneValue, String attTwoName, String attTwoValue)
  4. addElement(Document document, Element parentElement, String elementName, String elementValue)
  5. addElement(final Document doc, final Node parent, final String name)
  6. addElement(final Document document, final Element parentDom, final String namespace, final String name)
  7. addElement(final Document document, final Element root, final String elementValue, final String elementName)
  8. addElement(final Document dom, final Element el, final String name, final String value)
  9. addElementAndSetContent(Document doc, String name, Element parent, String text)