Java XML NodeList removeNodeListContent(NodeList nodeList)

Here you can find the source of removeNodeListContent(NodeList nodeList)

Description

remove Node List Content

License

Open Source License

Declaration

public static void removeNodeListContent(NodeList nodeList) 

Method Source Code

//package com.java2s;
/*/* ww w  . j av  a2  s.c o  m*/
 * Copyright (c) 2001-2011 Convertigo SA.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public License
 * as published by the Free Software Foundation; either version 3
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see<http://www.gnu.org/licenses/>.
 *
 * $URL$
 * $Author$
 * $Revision$
 * $Date$
 */

import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Main {
    public static void removeNodeListContent(NodeList nodeList) {
        while (nodeList.getLength() > 0) {
            removeNode(nodeList.item(0));
        }
    }

    public static void removeNode(Node node) {
        node.getParentNode().removeChild(node);
    }
}

Related

  1. prettyPrintLoop(NodeList nodes, StringBuilder string, String indentation)
  2. printNode(NodeList nodeList, int level)
  3. printNodeList(NodeList nodes)
  4. printNodeTypes(NodeList rows)
  5. removeBlankTextNode(NodeList nodes)
  6. replace(Node src, NodeList nodes)
  7. replaceElement(Element oldElement, NodeList newNodes)
  8. replaceElement(Element oldElement, NodeList newNodes)
  9. searchDialogByName(NodeList nodeList, String id)