Here you can find the source of appendChildElement(Element parentNode, String nodeName)
public static Element appendChildElement(Element parentNode, String nodeName)
//package com.java2s; //License from project: Apache License import org.w3c.dom.*; public class Main { public static Element appendChildElement(Element parentNode, String nodeName) { Document doc = parentNode.getOwnerDocument(); Element childNode = doc.createElement(nodeName); parentNode.appendChild(childNode); return childNode; }/*www. j av a 2 s.co m*/ }