| java.lang.Object org.apache.lenya.xml.AntDocumentHelper
AntDocumentHelper | public class AntDocumentHelper (Code) | | Slightly modified version of Lenya's DocumentBuilder to be used in Ant tasks.
|
getChildren | public static Element[] getChildren(Element element, String namespaceUri, String localName)(Code) | | Returns all child elements of an element that belong to a certain
namespace and have a certain local name.
Parameters: element - The parent element. Parameters: namespaceUri - The namespace that the childen must belong to. Parameters: localName - The local name of the children. The child elements. |
getSimpleElementText | public static String getSimpleElementText(Element element)(Code) | | Returns the text inside an element. Only the child text nodes of this
element are collected.
Parameters: element - The element. The text inside the element. |
|
|