Here you can find the source of addChild(final Node node, final Node child)
public static final void addChild(final Node node, final Node child)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Node; public class Main { public static final void addChild(final Node node, final Node child) { if (node != null) { node.appendChild(child);//w ww .j ava 2 s . c o m } } }