Java tutorial
//package com.java2s; import java.util.List; import org.w3c.dom.Node; public class Main { public static void removeElements(List<Node> listOfElements) { /* Method for removing all the elements in a list */ for (Node node : listOfElements) { node.getParentNode().removeChild(node); } } }