diff options
Diffstat (limited to 'linguistic/source/lngopt.hxx')
-rw-r--r-- | linguistic/source/lngopt.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linguistic/source/lngopt.hxx b/linguistic/source/lngopt.hxx index c9caab9e7578..5eb5b92925af 100644 --- a/linguistic/source/lngopt.hxx +++ b/linguistic/source/lngopt.hxx @@ -89,13 +89,19 @@ class LinguProps : void launchEvent( const css::beans::PropertyChangeEvent &rEvt ) const; + /// @throws css::uno::RuntimeException bool getPropertyBool(const OUString& aPropertyName) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException sal_Int16 getPropertyInt16(const OUString& aPropertyName) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException css::lang::Locale getPropertyLocale(const OUString& aPropertyName) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void setProperty(const OUString& aPropertyName, bool p1) throw (css::uno::RuntimeException) { setPropertyValue( aPropertyName, css::uno::Any(p1) ); } + /// @throws css::uno::RuntimeException void setProperty(const OUString& aPropertyName, sal_Int16 p1) throw (css::uno::RuntimeException) { setPropertyValue( aPropertyName, css::uno::Any(p1) ); } + /// @throws css::uno::RuntimeException void setProperty(const OUString& aPropertyName, css::lang::Locale p1) throw (css::uno::RuntimeException) { setPropertyValue( aPropertyName, css::uno::Any(p1) ); } |