Package org.w3c.xsl
Interface XSLTContext
-
- All Known Implementing Classes:
Context
public interface XSLTContextInterface to be used with XSLT extension functions written in Java
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodegetContextNode()Return the context node from the XPath expression contextintgetContextPosition()Return the context position from the XPath expression contextintgetContextSize()Return the context size from the XPath expression contextNodegetCurrentNode()Return the current node from the XSLT context: the same as the result of calling the current() function from the XPath expression contextDocumentgetOwnerDocument()Return a Document to be used for creating nodesStringstringValue(Node n)Return the string-value of the specified NodeObjectsystemProperty(String namespaceURI, String localName)Return an object representing the value of the system property whose expanded name has the specified URI and local part
-
-
-
Method Detail
-
getContextNode
Node getContextNode()
Return the context node from the XPath expression context
-
getContextPosition
int getContextPosition()
Return the context position from the XPath expression context
-
getContextSize
int getContextSize()
Return the context size from the XPath expression context
-
getCurrentNode
Node getCurrentNode()
Return the current node from the XSLT context: the same as the result of calling the current() function from the XPath expression context
-
getOwnerDocument
Document getOwnerDocument()
Return a Document to be used for creating nodes
-
systemProperty
Object systemProperty(String namespaceURI, String localName)
Return an object representing the value of the system property whose expanded name has the specified URI and local part
-
-