diff options
-rw-r--r-- | unoxml/source/dom/documenttype.hxx | 16 | ||||
-rw-r--r-- | unoxml/source/dom/element.hxx | 32 | ||||
-rw-r--r-- | unoxml/source/dom/entity.hxx | 16 | ||||
-rw-r--r-- | unoxml/source/dom/notation.hxx | 16 |
4 files changed, 40 insertions, 40 deletions
diff --git a/unoxml/source/dom/documenttype.hxx b/unoxml/source/dom/documenttype.hxx index 0cc0cc082b94..0854b360449d 100644 --- a/unoxml/source/dom/documenttype.hxx +++ b/unoxml/source/dom/documenttype.hxx @@ -4,9 +4,9 @@ * * $RCSfile: documenttype.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: ihi $ $Date: 2007-11-19 16:43:06 $ + * last change: $Author: vg $ $Date: 2007-12-06 10:59:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -103,7 +103,7 @@ namespace DOM throw (RuntimeException); // --- delegation for XNde base. virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::appendChild(newChild); } @@ -184,7 +184,7 @@ namespace DOM } virtual Reference< XNode > SAL_CALL insertBefore( const Reference< XNode >& newChild, const Reference< XNode >& refChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::insertBefore(newChild, refChild); } @@ -199,23 +199,23 @@ namespace DOM CNode::normalize(); } virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::removeChild(oldChild); } virtual Reference< XNode > SAL_CALL replaceChild( const Reference< XNode >& newChild, const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::replaceChild(newChild, oldChild); } virtual void SAL_CALL setNodeValue(const OUString& nodeValue) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setNodeValue(nodeValue); } virtual void SAL_CALL setPrefix(const OUString& prefix) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setPrefix(prefix); } diff --git a/unoxml/source/dom/element.hxx b/unoxml/source/dom/element.hxx index def8da74b93b..61ec60d95ef5 100644 --- a/unoxml/source/dom/element.hxx +++ b/unoxml/source/dom/element.hxx @@ -4,9 +4,9 @@ * * $RCSfile: element.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: ihi $ $Date: 2007-11-19 16:43:33 $ + * last change: $Author: vg $ $Date: 2007-12-06 11:00:04 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -127,50 +127,50 @@ namespace DOM Removes an attribute by name. */ virtual void SAL_CALL removeAttribute(const OUString& name) - throw (DOMException); + throw (RuntimeException, DOMException); /** Removes the specified attribute node. */ virtual Reference< XAttr > SAL_CALL removeAttributeNode(const Reference< XAttr >& oldAttr) - throw (DOMException); + throw (RuntimeException, DOMException); /** Removes an attribute by local name and namespace URI. */ virtual void SAL_CALL removeAttributeNS(const OUString& namespaceURI, const OUString& localName) - throw (DOMException); + throw (RuntimeException, DOMException); /** Adds a new attribute. */ virtual void SAL_CALL setAttribute(const OUString& name, const OUString& value) - throw (DOMException); + throw (RuntimeException, DOMException); /** Adds a new attribute node. */ virtual Reference< XAttr > SAL_CALL setAttributeNode(const Reference< XAttr >& newAttr) - throw (DOMException); + throw (RuntimeException, DOMException); /** Adds a new attribute. */ virtual Reference< XAttr > SAL_CALL setAttributeNodeNS(const Reference< XAttr >& newAttr) - throw (DOMException); + throw (RuntimeException, DOMException); /** Adds a new attribute. */ virtual void SAL_CALL setAttributeNS( const OUString& namespaceURI, const OUString& qualifiedName, const OUString& value) - throw (DOMException); + throw (RuntimeException, DOMException); /** sets the element name */ virtual void SAL_CALL setElementName(const OUString& elementName) - throw (DOMException); + throw (RuntimeException, DOMException); // overrides for XNode base virtual OUString SAL_CALL getNodeName() @@ -183,7 +183,7 @@ namespace DOM // resolve uno inheritance problems... // --- delegation for XNde base. virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::appendChild(newChild); } @@ -259,7 +259,7 @@ namespace DOM } virtual Reference< XNode > SAL_CALL insertBefore( const Reference< XNode >& newChild, const Reference< XNode >& refChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::insertBefore(newChild, refChild); } @@ -274,23 +274,23 @@ namespace DOM CNode::normalize(); } virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::removeChild(oldChild); } virtual Reference< XNode > SAL_CALL replaceChild( const Reference< XNode >& newChild, const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::replaceChild(newChild, oldChild); } virtual void SAL_CALL setNodeValue(const OUString& nodeValue) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setNodeValue(nodeValue); } virtual void SAL_CALL setPrefix(const OUString& prefix) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setPrefix(prefix); } diff --git a/unoxml/source/dom/entity.hxx b/unoxml/source/dom/entity.hxx index 702c71ea47a2..058b3378f3d9 100644 --- a/unoxml/source/dom/entity.hxx +++ b/unoxml/source/dom/entity.hxx @@ -4,9 +4,9 @@ * * $RCSfile: entity.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: ihi $ $Date: 2007-11-19 16:44:03 $ + * last change: $Author: vg $ $Date: 2007-12-06 11:00:19 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -84,7 +84,7 @@ namespace DOM throw (RuntimeException); // --- delegation for XNde base. virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::appendChild(newChild); } @@ -165,7 +165,7 @@ namespace DOM } virtual Reference< XNode > SAL_CALL insertBefore( const Reference< XNode >& newChild, const Reference< XNode >& refChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::insertBefore(newChild, refChild); } @@ -180,23 +180,23 @@ namespace DOM CNode::normalize(); } virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::removeChild(oldChild); } virtual Reference< XNode > SAL_CALL replaceChild( const Reference< XNode >& newChild, const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::replaceChild(newChild, oldChild); } virtual void SAL_CALL setNodeValue(const OUString& nodeValue) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setNodeValue(nodeValue); } virtual void SAL_CALL setPrefix(const OUString& prefix) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setPrefix(prefix); } diff --git a/unoxml/source/dom/notation.hxx b/unoxml/source/dom/notation.hxx index d9c4b2b2e30b..dd78d79dd091 100644 --- a/unoxml/source/dom/notation.hxx +++ b/unoxml/source/dom/notation.hxx @@ -4,9 +4,9 @@ * * $RCSfile: notation.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: ihi $ $Date: 2007-11-19 16:44:57 $ + * last change: $Author: vg $ $Date: 2007-12-06 11:01:02 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -75,7 +75,7 @@ namespace DOM throw (RuntimeException); // --- delegation for XNde base. virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::appendChild(newChild); } @@ -156,7 +156,7 @@ namespace DOM } virtual Reference< XNode > SAL_CALL insertBefore( const Reference< XNode >& newChild, const Reference< XNode >& refChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::insertBefore(newChild, refChild); } @@ -171,23 +171,23 @@ namespace DOM CNode::normalize(); } virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::removeChild(oldChild); } virtual Reference< XNode > SAL_CALL replaceChild( const Reference< XNode >& newChild, const Reference< XNode >& oldChild) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::replaceChild(newChild, oldChild); } virtual void SAL_CALL setNodeValue(const OUString& nodeValue) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setNodeValue(nodeValue); } virtual void SAL_CALL setPrefix(const OUString& prefix) - throw (DOMException) + throw (RuntimeException, DOMException) { return CNode::setPrefix(prefix); } |