Here you can find the source of getElement(Element parent, String elementName)
Parameter | Description |
---|---|
parent | The parent to get the element from. |
elementName | The name of the element to look for. |
public static Element getElement(Element parent, String elementName)
//package com.java2s; import org.w3c.dom.Element; import org.w3c.dom.NodeList; public class Main { /**//from w w w. j a va 2 s . c o m * Get the first instance of an element by name. * * @param parent The parent to get the element from. * @param elementName The name of the element to look for. * @return The element or null if it is not found. */ public static Element getElement(Element parent, String elementName) { Element retval = null; NodeList children = parent.getElementsByTagName(elementName); if (children.getLength() > 0) { retval = (Element) children.item(0); } return retval; } }