summaryrefslogtreecommitdiff
path: root/filter/source/t602
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 17:57:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:20 +0100
commit4770f5488870cae68d9a3df2c62613c32a040f44 (patch)
tree3e38ad13df2411b6b6f11e5fa844c95476e86e15 /filter/source/t602
parent36d7778f465367ebd2ea5e64cfcea2fc22a8b01d (diff)
New loplugin:dynexcspec: Add @throws documentation, filter
Change-Id: Id465279b54f775ae688d02798c7a67fc50829fc6
Diffstat (limited to 'filter/source/t602')
-rw-r--r--filter/source/t602/t602filter.hxx13
1 files changed, 12 insertions, 1 deletions
diff --git a/filter/source/t602/t602filter.hxx b/filter/source/t602/t602filter.hxx
index 59d07a21df70..852fb8f33557 100644
--- a/filter/source/t602/t602filter.hxx
+++ b/filter/source/t602/t602filter.hxx
@@ -53,13 +53,15 @@ typedef enum {
enum class tnode {START,READCH,EOL,POCMD,EXPCMD,SETCMD,SETCH,WRITE,EEND,QUIT};
+/// @throws css::uno::RuntimeException
OUString getImplementationName()
throw ( css::uno::RuntimeException );
+/// @throws css::uno::RuntimeException
css::uno::Sequence < OUString > getSupportedServiceNames()
throw ( css::uno::RuntimeException );
-
+/// @throws css::uno::Exception
css::uno::Reference < css::uno::XInterface > SAL_CALL
CreateInstance( const css::uno::Reference< css::lang::XMultiServiceFactory > &r)
throw ( css::uno::Exception );
@@ -247,6 +249,7 @@ private:
void setfnt(fonts fnt,bool mustwrite);
void wrtfnt();
+ /// @throws css::uno::RuntimeException
bool SAL_CALL importImpl( const css::uno::Sequence< css::beans::PropertyValue >& aDescriptor )
throw (css::uno::RuntimeException);
@@ -285,28 +288,36 @@ private:
bool SAL_CALL test();
};
+/// @throws css::uno::RuntimeException
OUString T602ImportFilter_getImplementationName()
throw ( css::uno::RuntimeException );
+/// @throws css::uno::RuntimeException
bool SAL_CALL T602ImportFilter_supportsService( const OUString& ServiceName )
throw ( css::uno::RuntimeException );
+/// @throws css::uno::RuntimeException
css::uno::Sequence< OUString > SAL_CALL T602ImportFilter_getSupportedServiceNames( )
throw ( css::uno::RuntimeException );
+/// @throws css::uno::Exception
css::uno::Reference< css::uno::XInterface >
SAL_CALL T602ImportFilter_createInstance( const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr)
throw ( css::uno::Exception );
+/// @throws css::uno::RuntimeException
OUString T602ImportFilterDialog_getImplementationName()
throw ( css::uno::RuntimeException );
+/// @throws css::uno::RuntimeException
bool SAL_CALL T602ImportFilterDialog_supportsService( const OUString& ServiceName )
throw ( css::uno::RuntimeException );
+/// @throws css::uno::RuntimeException
css::uno::Sequence< OUString > SAL_CALL T602ImportFilterDialog_getSupportedServiceNames( )
throw ( css::uno::RuntimeException );
+/// @throws css::uno::Exception
css::uno::Reference< css::uno::XInterface >
SAL_CALL T602ImportFilterDialog_createInstance( const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr)
throw ( css::uno::Exception );