| |
|
| org.apache.dvsl.DVSLNode
All known Subclasses: org.apache.dvsl.dom4j.Dom4jNodeImpl,
DVSLNode | public interface DVSLNode (Code) | | wrapper interface for nodes exposed in the
template. Isolates the in-VSL DOM from that
of the underlying implementation
author: Geir Magnusson Jr. |
children | public List children()(Code) | | returns a list of all children of the current
node
|
copy | public String copy()(Code) | | renders a deep copy of the XML tree
below the current node to the output
|
copy | public String copy(List nodeList)(Code) | | renders a deep copy of the nodes in
the list ot the output
|
getNodeImpl | Object getNodeImpl()(Code) | | returns the object corresponding to the node
in the implementaion that we are using.
use only with the greatest of care
|
selectNodes | public List selectNodes(String xpath)(Code) | | returns a list of nodes that satisfy
the xpath
|
selectSingleNode | public DVSLNode selectSingleNode(String xpath)(Code) | | returns a single node that satisfies
the xpath
|
toString | public String toString()(Code) | | returns the 'value' of the node
|
value | public String value()(Code) | | returns the 'value' of the node
|
valueOf | public Object valueOf(String xpath)(Code) | | returns the value of the XPAth
expression
|
|
|
|