Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 * Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

import org.w3c.dom.Element;

import org.w3c.dom.Node;

public class Main {
    public static Element getNextElement(Node el) {
        while ((el != null) && (el.getNodeType() != Node.ELEMENT_NODE)) {
            el = el.getNextSibling();
        }
        return (Element) el;

    }
}