com.opensymphony.xwork.config.providers
Class XmlHelper
java.lang.Object
com.opensymphony.xwork.config.providers.XmlHelper
public class XmlHelper
- extends Object
XML utilities.
- Author:
- Mike, tmjee
Method Summary |
static String |
getContent(Element element)
This method will return the content of this particular element . |
static Map |
getParams(Element paramsElement)
This method will find all the parameters under this paramsElement and return them as
Map. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
XmlHelper
public XmlHelper()
getParams
public static Map getParams(Element paramsElement)
- This method will find all the parameters under this
paramsElement
and return them as
Map. For example,
value1
value2
value3
will returns a Map with the following key, value pairs :-
- param1 - value1
- param2 - value2
- param3 - value3
- Parameters:
paramsElement
-
- Returns:
getContent
public static String getContent(Element element)
- This method will return the content of this particular
element
.
For example,
something_1
When the Element
<result>
is passed in as
argument (element
to this method, it returns the content of it,
namely, something_1
in the example above.
- Returns: