Here you can find the source of getFirstChildElement(Element element, String namespaceURI, String tagName)
Parameter | Description |
---|---|
element | Element |
namespaceURI | String |
tagName | String |
public static Element getFirstChildElement(Element element, String namespaceURI, String tagName)
//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; } }