Here you can find the source of getFirstChildElement(Element element)
Parameter | Description |
---|---|
element | a parameter |
public static Element getFirstChildElement(Element element)
//package com.java2s; /******************************************************************************* * Copyright (c) 2007 Red Hat, Inc.//w w w .j a v a 2 s . co m * Distributed under license by Red Hat, Inc. All rights reserved. * This program is made available under the terms of the * Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Red Hat, Inc. - initial API and implementation ******************************************************************************/ import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { /** * * @param element * @return */ public static Element getFirstChildElement(Element element) { if (element != null) { NodeList children = element.getChildNodes(); int length = children.getLength(); for (int i = 0; i < length; i++) { Node child = children.item(i); if (child.getNodeType() == Node.ELEMENT_NODE) return (Element) child; } } return null; } }