:: com :: sun :: star :: xml :: xpath ::

interface XXPathAPI

Methods' Summary
registerNS  
unregisterNS  
registerExtension  
registerExtensionInstance  
eval Eval XPath Expression  
evalNS Eval XPath Expression  
selectNodeList Use an XPath string to select a nodelist.  
selectNodeListNS Use an XPath string to select a nodelist.  
selectSingleNode Use an XPath string to select a single node.  
selectSingleNodeNS Use an XPath string to select a single node.  
Methods' Details
registerNS
void
registerNS( [in] string  prefix,
[in] string  url );

unregisterNS
void
unregisterNS( [in] string  prefix,
[in] string  url );

registerExtension
void
registerExtension( [in] string  serviceName );

registerExtensionInstance
void
registerExtensionInstance( [in] XXPathExtension  aExtension );

eval
XXPathObject
eval( [in] ::com::sun::star::xml::dom::XNode  contextNode,
[in] string  str );

Description
Eval XPath Expression
evalNS
XXPathObject
evalNS( [in] ::com::sun::star::xml::dom::XNode  contextNode,
[in] string  str,
[in] ::com::sun::star::xml::dom::XNode  namespaceNode );

Description
Eval XPath Expression
selectNodeList
::com::sun::star::xml::dom::XNodeList
selectNodeList( [in] ::com::sun::star::xml::dom::XNode  contextNode,
[in] string  str );

Description
Use an XPath string to select a nodelist.
selectNodeListNS
::com::sun::star::xml::dom::XNodeList
selectNodeListNS( [in] ::com::sun::star::xml::dom::XNode  contextNode,
[in] string  str,
[in] ::com::sun::star::xml::dom::XNode  namespaceNode );

Description
Use an XPath string to select a nodelist.
selectSingleNode
::com::sun::star::xml::dom::XNode
selectSingleNode( [in] ::com::sun::star::xml::dom::XNode  contextNode,
[in] string  str );

Description
Use an XPath string to select a single node.
selectSingleNodeNS
::com::sun::star::xml::dom::XNode
selectSingleNodeNS( [in] ::com::sun::star::xml::dom::XNode  contextNode,
[in] string  str,
[in] ::com::sun::star::xml::dom::XNode  namespaceNode );

Description
Use an XPath string to select a single node.
Top of Page