Java XML Child Element Create createChild(final Element el, final String name)

Here you can find the source of createChild(final Element el, final String name)

Description

Appends a child element with the given name to the specified DOM element.

License

Open Source License

Declaration

public static Element createChild(final Element el, final String name) 

Method Source Code

//package com.java2s;
/*/*from  w  w  w  .  ja v  a  2  s.c  o m*/
 * #%L
 * VisBio application for visualization of multidimensional biological
 * image data.
 * %%
 * Copyright (C) 2002 - 2014 Board of Regents of the University of
 * Wisconsin-Madison.
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 2 of the
 * License, or (at your option) any later version.
 * 
 * This program 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public
 * License along with this program.  If not, see
 * <http://www.gnu.org/licenses/gpl-2.0.html>.
 * #L%
 */

import org.w3c.dom.Element;

public class Main {
    /**
     * Appends a child element with the given name to the specified DOM element.
     */
    public static Element createChild(final Element el, final String name) {
        final Element child = el.getOwnerDocument().createElement(name);
        el.appendChild(child);
        return child;
    }
}

Related

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