Java XML Child Remove All removeAllChildren(final Node node)

Here you can find the source of removeAllChildren(final Node node)

Description

Removes all children of the specified node.

License

Apache License

Parameter

Parameter Description
node the node.

Declaration

public static void removeAllChildren(final Node node) 

Method Source Code

//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);
        }
    }
}

Related

  1. removeAllChildNodes(Node node)
  2. removeAllChildNodes(Node node, String name)
  3. removeAllChildren(Element deps)
  4. removeAllChildren(Element node, String elementName)
  5. removeAllChildren(final Element element)
  6. removeAllChildren(Node node)
  7. removeAllChildren(Node node)
  8. removeAllChildren(Node node)
  9. removeAllChildren(Node node)