summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-06-06 11:08:01 +0000
committerRüdiger Timm <rt@openoffice.org>2008-06-06 11:08:01 +0000
commitf44d165d2f033bdfb551729c6d1394e5db680231 (patch)
treed881f7660cf75ce50765601727d34bf6d852e513 /unoxml
parent7d76d92bc014e8aeb166a8dce74e16e27731a4ef (diff)
INTEGRATION: CWS xmlfix2 (1.4.38); FILE MERGED
2008/05/15 17:26:55 mst 1.4.38.2: RESYNC: (1.4-1.5); FILE MERGED 2008/03/31 14:20:36 mst 1.4.38.1: #i81678#: interface change: XXPathAPI - unoxml/source/xpath/xpathapi{.hxx,.cxx}: + adapt to changes in css.xml.xpath.XXPathAPI
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/xpath/xpathapi.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/unoxml/source/xpath/xpathapi.hxx b/unoxml/source/xpath/xpathapi.hxx
index 28aae5cb741d..95cc18ed612b 100644
--- a/unoxml/source/xpath/xpathapi.hxx
+++ b/unoxml/source/xpath/xpathapi.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: xpathapi.hxx,v $
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
* This file is part of OpenOffice.org.
*
@@ -48,6 +48,7 @@
#include <com/sun/star/xml/xpath/XXPathObject.hpp>
#include <com/sun/star/xml/xpath/XXPathExtension.hpp>
#include <com/sun/star/xml/xpath/Libxml2ExtensionHandle.hpp>
+#include <com/sun/star/xml/xpath/XPathException.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
@@ -110,36 +111,35 @@ namespace XPath
Use an XPath string to select a nodelist.
*/
virtual Reference< XNodeList > SAL_CALL selectNodeList(const Reference< XNode >& contextNode, const OUString& str)
- throw (RuntimeException);
+ throw (RuntimeException, XPathException);
/**
Use an XPath string to select a nodelist.
*/
virtual Reference< XNodeList > SAL_CALL selectNodeListNS(const Reference< XNode >& contextNode, const OUString& str, const Reference< XNode >& namespaceNode)
- throw (RuntimeException);
+ throw (RuntimeException, XPathException);
/**
Use an XPath string to select a single node.
*/
virtual Reference< XNode > SAL_CALL selectSingleNode(const Reference< XNode >& contextNode, const OUString& str)
- throw (RuntimeException);
+ throw (RuntimeException, XPathException);
/**
Use an XPath string to select a single node.
*/
virtual Reference< XNode > SAL_CALL selectSingleNodeNS(const Reference< XNode >& contextNode, const OUString& str, const Reference< XNode >& namespaceNode)
- throw (RuntimeException);
+ throw (RuntimeException, XPathException);
virtual Reference< XXPathObject > SAL_CALL eval(const Reference< XNode >& contextNode, const OUString& str)
- throw (RuntimeException);
+ throw (RuntimeException, XPathException);
virtual Reference< XXPathObject > SAL_CALL evalNS(const Reference< XNode >& contextNode, const OUString& str, const Reference< XNode >& namespaceNode)
- throw (RuntimeException);
+ throw (RuntimeException, XPathException);
virtual void SAL_CALL registerExtension(const OUString& aName) throw (RuntimeException);
virtual void SAL_CALL registerExtensionInstance(const Reference< XXPathExtension>& aExtension) throw (RuntimeException);
-
};
}