Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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