Here you can find the source of findNode(NodeList nodeList, String nodeName)
Node
with the nodeName().equals(nodeName) in the nodeList
Parameter | Description |
---|---|
nodeList | a parameter |
nodeName | a parameter |
private static Node findNode(NodeList nodeList, String nodeName)
//package com.java2s; /*/*from w w w . j a v a2s. co m*/ * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only * (the "License"). You may not use this file except in compliance * with the License. * * You can obtain a copy of the license at license/ESCIDOC.LICENSE * or http://www.escidoc.org/license. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at license/ESCIDOC.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { /** * Search for the first <code>Node</code> with the nodeName().equals(nodeName) * in the nodeList * @param nodeList * @param nodeName * @return Node or null if no Node has been found */ private static Node findNode(NodeList nodeList, String nodeName) { Node curNode; for (int i = 0; i < nodeList.getLength(); i++) { curNode = nodeList.item(i); if (curNode.getNodeType() == Node.ELEMENT_NODE && nodeName.equals(curNode.getNodeName())) { return curNode; } } return null; } }