summaryrefslogtreecommitdiff
path: root/include/svx/unomaster.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 17:50:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:12 +0100
commit9859ee7b1901449e63e4047554776f23c2de20ce (patch)
tree3facdb30c2c4bec900c666781859c4aefa7d45c1 /include/svx/unomaster.hxx
parent77894947ea5fcae00d8eeaee9482b53adfc6b7f2 (diff)
New loplugin:dynexcspec: Add @throws documentation, svx
Change-Id: I0e827554a18622e19aec5f81c40da52664783f69
Diffstat (limited to 'include/svx/unomaster.hxx')
-rw-r--r--include/svx/unomaster.hxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/svx/unomaster.hxx b/include/svx/unomaster.hxx
index 9e2db415f314..ee9ee03f59c4 100644
--- a/include/svx/unomaster.hxx
+++ b/include/svx/unomaster.hxx
@@ -35,7 +35,13 @@ class SvxShapeMaster
public:
virtual bool queryAggregation( const css::uno::Type & rType, css::uno::Any& aAny ) = 0;
+ /// @throws css::uno::RuntimeException
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(css::uno::RuntimeException) = 0;
+ /// @throws css::beans::UnknownPropertyException
+ /// @throws css::beans::PropertyVetoException
+ /// @throws css::lang::IllegalArgumentException
+ /// @throws css::lang::WrappedTargetException
+ /// @throws css::uno::RuntimeException
virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue )
throw (css::beans::UnknownPropertyException,
css::beans::PropertyVetoException,
@@ -43,18 +49,30 @@ public:
css::lang::WrappedTargetException,
css::uno::RuntimeException,
std::exception) = 0;
+ /// @throws css::beans::UnknownPropertyException
+ /// @throws css::lang::WrappedTargetException
+ /// @throws css::uno::RuntimeException
virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName )
throw (css::beans::UnknownPropertyException,
css::lang::WrappedTargetException,
css::uno::RuntimeException,
std::exception) = 0;
+ /// @throws css::beans::UnknownPropertyException
+ /// @throws css::uno::RuntimeException
virtual css::beans::PropertyState SAL_CALL getPropertyState( const OUString& PropertyName ) throw(css::beans::UnknownPropertyException, css::uno::RuntimeException) = 0;
+ /// @throws css::beans::UnknownPropertyException
+ /// @throws css::uno::RuntimeException
virtual void SAL_CALL setPropertyToDefault( const OUString& PropertyName ) throw(css::beans::UnknownPropertyException, css::uno::RuntimeException) = 0;
+ /// @throws css::beans::UnknownPropertyException
+ /// @throws css::lang::WrappedTargetException
+ /// @throws css::uno::RuntimeException
virtual css::uno::Any SAL_CALL getPropertyDefault( const OUString& aPropertyName ) throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) = 0;
+ /// @throws css::uno::RuntimeException
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) throw(css::uno::RuntimeException) = 0;
+ /// @throws css::uno::RuntimeException
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException) = 0;
virtual void dispose() = 0;