summaryrefslogtreecommitdiffstats
path: root/unoxml/source/dom/element.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-25 21:31:58 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-26 18:22:20 +0100
commit5e21a413c788f839a66d9e4c14e745ed18058db8 (patch)
treed4451246461346a425ad6f796e08bf1514cdd942 /unoxml/source/dom/element.hxx
parentFixup whitespace changes, remove commented code. (diff)
downloadcore-5e21a413c788f839a66d9e4c14e745ed18058db8.tar.gz
core-5e21a413c788f839a66d9e4c14e745ed18058db8.zip
cppuhelper: retrofit std::exception into overriding exception specs
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
Diffstat (limited to 'unoxml/source/dom/element.hxx')
-rw-r--r--unoxml/source/dom/element.hxx82
1 files changed, 41 insertions, 41 deletions
diff --git a/unoxml/source/dom/element.hxx b/unoxml/source/dom/element.hxx
index 7ca517d9e825..fa55b8bdb681 100644
--- a/unoxml/source/dom/element.hxx
+++ b/unoxml/source/dom/element.hxx
@@ -63,25 +63,25 @@ namespace DOM
Retrieves an attribute value by name.
*/
virtual OUString SAL_CALL getAttribute(const OUString& name)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Retrieves an attribute node by name.
*/
virtual Reference< XAttr > SAL_CALL getAttributeNode(const OUString& name)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Retrieves an Attr node by local name and namespace URI.
*/
virtual Reference< XAttr > SAL_CALL getAttributeNodeNS(const OUString& namespaceURI, const OUString& localName)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Retrieves an attribute value by local name and namespace URI.
*/
virtual OUString SAL_CALL getAttributeNS(const OUString& namespaceURI, const OUString& localName)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Returns a NodeList of all descendant Elements with a given tag name,
@@ -89,7 +89,7 @@ namespace DOM
encountered in a preorder traversal of this Element tree.
*/
virtual Reference< XNodeList > SAL_CALL getElementsByTagName(const OUString& name)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Returns a NodeList of all the descendant Elements with a given local
@@ -98,70 +98,70 @@ namespace DOM
*/
virtual Reference< XNodeList > SAL_CALL getElementsByTagNameNS(const OUString& namespaceURI,
const OUString& localName)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
The name of the element.
*/
virtual OUString SAL_CALL getTagName()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Returns true when an attribute with a given name is specified on this
element or has a default value, false otherwise.
*/
virtual sal_Bool SAL_CALL hasAttribute(const OUString& name)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Returns true when an attribute with a given local name and namespace
URI is specified on this element or has a default value, false otherwise.
*/
virtual sal_Bool SAL_CALL hasAttributeNS(const OUString& namespaceURI, const OUString& localName)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
/**
Removes an attribute by name.
*/
virtual void SAL_CALL removeAttribute(const OUString& name)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Removes the specified attribute node.
*/
virtual Reference< XAttr > SAL_CALL removeAttributeNode(const Reference< XAttr >& oldAttr)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Removes an attribute by local name and namespace URI.
*/
virtual void SAL_CALL removeAttributeNS(const OUString& namespaceURI, const OUString& localName)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Adds a new attribute.
*/
virtual void SAL_CALL setAttribute(const OUString& name, const OUString& value)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Adds a new attribute node.
*/
virtual Reference< XAttr > SAL_CALL setAttributeNode(const Reference< XAttr >& newAttr)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Adds a new attribute.
*/
virtual Reference< XAttr > SAL_CALL setAttributeNodeNS(const Reference< XAttr >& newAttr)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
Adds a new attribute.
*/
virtual void SAL_CALL setAttributeNS(
const OUString& namespaceURI, const OUString& qualifiedName, const OUString& value)
- throw (RuntimeException, DOMException);
+ throw (RuntimeException, DOMException, std::exception);
/**
sets the element name
@@ -171,120 +171,120 @@ namespace DOM
// overrides for XNode base
virtual OUString SAL_CALL getNodeName()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual OUString SAL_CALL getNodeValue()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual Reference< XNamedNodeMap > SAL_CALL getAttributes()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
virtual OUString SAL_CALL getLocalName()
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
// resolve uno inheritance problems...
// --- delegation for XNde base.
virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild)
- throw (RuntimeException, DOMException)
+ throw (RuntimeException, DOMException, std::exception)
{
return CNode::appendChild(newChild);
}
virtual Reference< XNode > SAL_CALL cloneNode(sal_Bool deep)
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::cloneNode(deep);
}
virtual Reference< XNodeList > SAL_CALL getChildNodes()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getChildNodes();
}
virtual Reference< XNode > SAL_CALL getFirstChild()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getFirstChild();
}
virtual Reference< XNode > SAL_CALL getLastChild()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getLastChild();
}
virtual OUString SAL_CALL getNamespaceURI()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getNamespaceURI();
}
virtual Reference< XNode > SAL_CALL getNextSibling()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getNextSibling();
}
virtual NodeType SAL_CALL getNodeType()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getNodeType();
}
virtual Reference< XDocument > SAL_CALL getOwnerDocument()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getOwnerDocument();
}
virtual Reference< XNode > SAL_CALL getParentNode()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getParentNode();
}
virtual OUString SAL_CALL getPrefix()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getPrefix();
}
virtual Reference< XNode > SAL_CALL getPreviousSibling()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::getPreviousSibling();
}
virtual sal_Bool SAL_CALL hasAttributes()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::hasAttributes();
}
virtual sal_Bool SAL_CALL hasChildNodes()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::hasChildNodes();
}
virtual Reference< XNode > SAL_CALL insertBefore(
const Reference< XNode >& newChild, const Reference< XNode >& refChild)
- throw (RuntimeException, DOMException)
+ throw (RuntimeException, DOMException, std::exception)
{
return CNode::insertBefore(newChild, refChild);
}
virtual sal_Bool SAL_CALL isSupported(const OUString& feature, const OUString& ver)
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
return CNode::isSupported(feature, ver);
}
virtual void SAL_CALL normalize()
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
CNode::normalize();
}
virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild)
- throw (RuntimeException, DOMException)
+ throw (RuntimeException, DOMException, std::exception)
{
return CNode::removeChild(oldChild);
}
virtual Reference< XNode > SAL_CALL replaceChild(
const Reference< XNode >& newChild, const Reference< XNode >& oldChild)
- throw (RuntimeException, DOMException)
+ throw (RuntimeException, DOMException, std::exception)
{
return CNode::replaceChild(newChild, oldChild);
}
virtual void SAL_CALL setNodeValue(const OUString& nodeValue)
- throw (RuntimeException, DOMException)
+ throw (RuntimeException, DOMException, std::exception)
{
return CNode::setNodeValue(nodeValue);
}
virtual void SAL_CALL setPrefix(const OUString& prefix)
- throw (RuntimeException, DOMException)
+ throw (RuntimeException, DOMException, std::exception)
{
return CNode::setPrefix(prefix);
}