Here you can find the source of removeAllChildren(final Node node)
Parameter | Description |
---|---|
node | the node. |
public static void removeAllChildren(final Node node)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Node; public class Main { /**/*from ww w .ja v a 2s . c o m*/ * Removes all children of the specified node. * * @param node * the node. */ public static void removeAllChildren(final Node node) { Node child; while ((child = node.getFirstChild()) != null) { node.removeChild(child); } } }