Here you can find the source of createChildElement(Element parent, String tagName, Document doc)
public static Element createChildElement(Element parent, String tagName, Document doc)
//package com.java2s; import org.w3c.dom.Document; import org.w3c.dom.Element; public class Main { public static Element createChildElement(Element parent, String tagName, Document doc) { Element child = doc.createElement(tagName); parent.appendChild(child);//from w w w . j ava2 s . c om return child; } }