Java XML First Child Element firstElementNodeChild(Node n)

Here you can find the source of firstElementNodeChild(Node n)

Description

first Element Node Child

License

Open Source License

Declaration

public static Node firstElementNodeChild(Node n) 

Method Source Code


//package com.java2s;
/* ***** BEGIN LICENSE BLOCK *****
 * Copyright (C) 2010-2011, The VNREAL Project Team.
 * /*from  ww  w  . ja  v a2 s.co  m*/
 * This work has been funded by the European FP7
 * Network of Excellence "Euro-NF" (grant agreement no. 216366)
 * through the Specific Joint Developments and Experiments Project
 * "Virtual Network Resource Embedding Algorithms" (VNREAL). 
 *
 * The VNREAL Project Team consists of members from:
 * - University of Wuerzburg, Germany
 * - Universitat Politecnica de Catalunya, Spain
 * - University of Passau, Germany
 * See the file AUTHORS for details and contact information.
 * 
 * This file is part of ALEVIN (ALgorithms for Embedding VIrtual Networks).
 *
 * ALEVIN is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License Version 3 or later
 * (the "GPL"), or the GNU Lesser General Public License Version 3 or later
 * (the "LGPL") as published by the Free Software Foundation.
 *
 * ALEVIN is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * or the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License and
 * GNU Lesser General Public License along with ALEVIN; see the file
 * COPYING. If not, see <http://www.gnu.org/licenses/>.
 *
 * ***** END LICENSE BLOCK ***** */

import org.w3c.dom.Node;

public class Main {
    public static Node firstElementNodeChild(Node n) {
        Node m = n.getFirstChild();

        while (m != null && !isElementNode(m))
            m = m.getNextSibling();

        return m;
    }

    public static boolean isElementNode(Node n) {
        return (n.getNodeType() == Node.ELEMENT_NODE);
    }
}

Related

  1. firstChildElement(Element parent)
  2. firstChildElement(Node node)
  3. firstChildElement(Node node)
  4. firstChildNodeWithName(org.w3c.dom.Node node, String name)
  5. firstChildTextContent(Element element, String name)
  6. firstNamedChild(Element el, String lName)
  7. firstTextChild(Element el)
  8. getDirectChild(Node fNode, String localName, String namespace)
  9. getDirectChild(Node fNode, String localName, String namespace)