Here you can find the source of appendElementChild(Document doc, Element parent, String name)
public static Element appendElementChild(Document doc, Element parent, String name)
//package com.java2s; //License from project: Apache License import org.w3c.dom.*; public class Main { public static Element appendElementChild(Document doc, Element parent, String name) { Element el = doc.createElement(name); parent.appendChild(el);/* w ww . j a v a 2 s . com*/ return el; } }