Here you can find the source of removeAllChildren(Node node)
public static void removeAllChildren(Node node)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.Node; public class Main { public static void removeAllChildren(Node node) { while (node.getFirstChild() != null) node.removeChild(node.getFirstChild()); }/* w ww. j a v a 2 s . c om*/ }