diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:00:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:24 +0100 |
commit | a10b95bcc97896f7f8d8643593a5d759f41ac82d (patch) | |
tree | 76cdb3318b9dec6bc0238d6630b1769408e9ae4a /include/comphelper/accessiblewrapper.hxx | |
parent | 5b2b75ac26961d3cef093ca546a5316be6f2d782 (diff) |
New loplugin:dynexcspec: Add @throws documentation, comphelper
Change-Id: I115c5c34cf97858d9fdd96432cb57bde6d4537cb
Diffstat (limited to 'include/comphelper/accessiblewrapper.hxx')
-rw-r--r-- | include/comphelper/accessiblewrapper.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/comphelper/accessiblewrapper.hxx b/include/comphelper/accessiblewrapper.hxx index d2f769fea2c4..2cfae97b6303 100644 --- a/include/comphelper/accessiblewrapper.hxx +++ b/include/comphelper/accessiblewrapper.hxx @@ -199,8 +199,12 @@ namespace comphelper DECLARE_XTYPEPROVIDER( ) // XAccessibleContext + /// @throws css::uno::RuntimeException sal_Int32 baseGetAccessibleChildCount( ) throw (css::uno::RuntimeException, std::exception); + /// @throws css::lang::IndexOutOfBoundsException + /// @throws css::uno::RuntimeException css::uno::Reference< css::accessibility::XAccessible > baseGetAccessibleChild( sal_Int32 i ) throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException, std::exception); + /// @throws css::uno::RuntimeException css::uno::Reference< css::accessibility::XAccessibleRelationSet > baseGetAccessibleRelationSet( ) throw (css::uno::RuntimeException, std::exception); // XAccessibleEventListener @@ -220,6 +224,8 @@ namespace comphelper <p>The mutex of the BroadcastHelper passed to the instance's ctor is <em>not</em> locked when calling into this method</p> + + @throws css::uno::RuntimeException */ virtual void notifyTranslatedEvent( const css::accessibility::AccessibleEventObject& _rEvent ) throw (css::uno::RuntimeException) = 0; |