org.apache.myfaces.util.xml

Class XmlUtils

public class XmlUtils extends Object

Version: $Revision: 209486 $ $Date: 2005-07-06 19:48:41 +0200 (Wed, 06 Jul 2005) $

Author: Manfred Geiler (latest modification by $Author: grantsmith $)

Method Summary
static StringgetChildText(Element elem, String childTagName)
Return content of child element with given tag name.
static ListgetChildTextList(Element elem, String childTagName)
Return list of content Strings of all child elements with given tag name.
static StringgetElementText(Element elem)

Method Detail

getChildText

public static String getChildText(Element elem, String childTagName)
Return content of child element with given tag name. If more than one children with this name are present, the content of the last element is returned.

Parameters: elem childTagName

Returns: content of child element or null if no child element with this name was found

getChildTextList

public static List getChildTextList(Element elem, String childTagName)
Return list of content Strings of all child elements with given tag name.

Parameters: elem childTagName

Returns: List

getElementText

public static String getElementText(Element elem)