Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/**
 * Copyright 2011-2016 Three Crickets LLC.
 * <p>
 * The contents of this file are subject to the terms of the LGPL version 3.0:
 * http://www.gnu.org/copyleft/lesser.html
 * <p>
 * Alternatively, you can obtain a royalty free commercial license with less
 * limitations, transferable or non-transferable, directly from Three Crickets
 * at http://threecrickets.com/
 */

import org.w3c.dom.Element;
import org.w3c.dom.Node;

public class Main {
    /**
     * Recursively removes all text nodes from a DOM element.
     * 
     * @param element
     *        The element
     */
    public static void removeTextNodes(Element element) {
        Node nextNode = element.getFirstChild();
        for (Node child = element.getFirstChild(); nextNode != null;) {
            child = nextNode;
            nextNode = child.getNextSibling();
            if (child.getNodeType() == Node.TEXT_NODE)
                element.removeChild(child);
            else if (child.getNodeType() == Node.ELEMENT_NODE)
                removeTextNodes((Element) child);
        }
    }
}