Java XML Element Root getRootElement(Document doc)

Here you can find the source of getRootElement(Document doc)

Description

get Root Element

License

Apache License

Declaration

public static Element getRootElement(Document doc) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import org.w3c.dom.Document;
import org.w3c.dom.Element;

import org.w3c.dom.Node;

public class Main {
    public static Element getRootElement(Document doc) {
        Node node = doc.getFirstChild();
        while (node != null) {
            if (node.getNodeType() == Node.ELEMENT_NODE)
                return (Element) node;
            node = node.getNextSibling();
        }/*from w w  w. j a v a2 s . co m*/
        return null;
    }
}

Related

  1. getRoot(final Document doc)
  2. getRoot(SOAPElement e)
  3. getRootElement(Document d)
  4. getRootElement(Document doc)
  5. getRootElement(Document doc)
  6. getRootElement(Document document)
  7. getRootElement(Document document)
  8. getRootElement(Document parent)
  9. getRootElement(final Element descendant)