Java XML First Child Element getFirstChildElement(Element element, String namespaceURI, String tagName)

Here you can find the source of getFirstChildElement(Element element, String namespaceURI, String tagName)

Description

Return the first element that is a child of 'element' with the name 'tagName'.

License

Open Source License

Parameter

Parameter Description
element Element
namespaceURI String
tagName String

Return

Element

Declaration

public static Element getFirstChildElement(Element element, String namespaceURI, String tagName) 

Method Source Code


//package com.java2s;
/*/*w ww .j  a  va2s. c o  m*/
 * Copyright (c) 2008-2011 Simon Ritchie.
 * All rights reserved. 
 * 
 * This program is free software: you can redistribute it and/or modify 
 * it under the terms of the GNU Lesser General Public License as published 
 * by the Free Software Foundation, either version 3 of the License, or 
 * (at your option) any later version.
 * 
 * This program 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 Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License 
 * along with this program.  If not, see http://www.gnu.org/licenses/>.
 */

import org.w3c.dom.*;

public class Main {
    /**
     * Return the first element that is a child of 'element' with the name 'tagName'.
     * @param element Element
     * @param namespaceURI String
     * @param tagName String
     * @return Element
     */
    public static Element getFirstChildElement(Element element, String namespaceURI, String tagName) {
        NodeList nl = element.getElementsByTagNameNS(namespaceURI, tagName);
        if (nl != null && nl.getLength() > 0) {
            return (Element) nl.item(0);
        }
        return null;
    }

    /**
     * Return the first element that is a child of 'element' with the name 'tagName'.
     * @param element Element
     * @param tagName String
     * @return Element
     */
    public static Element getFirstChildElement(Element element, String tagName) {
        NodeList nl = element.getElementsByTagName(tagName);
        if (nl != null && nl.getLength() > 0) {
            return (Element) nl.item(0);
        }
        return null;
    }
}

Related

  1. getFirstChildElement(Element element)
  2. getFirstChildElement(Element element)
  3. getFirstChildElement(Element element)
  4. getFirstChildElement(Element element)
  5. getFirstChildElement(Element element)
  6. getFirstChildElement(Element elm, String name)
  7. getFirstChildElement(Element elm, String name)
  8. getFirstChildElement(Element elm, String name)
  9. getFirstChildElement(Element parent)