diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 17:50:46 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:13 +0100 |
commit | 491f9a6ce4ab670145833dbcdd2b2ae5fe824c68 (patch) | |
tree | 677d54ba20aacb890d24f42ab8e99820d3de7a0b /stoc/source/uriproc | |
parent | ebcc8707a019831907c340ce3bcbc9557136eed0 (diff) |
New loplugin:dynexcspec: Add @throws documentation, stoc
Change-Id: I8c7d5088aed055c3734165343189233b3124c9be
Diffstat (limited to 'stoc/source/uriproc')
-rw-r--r-- | stoc/source/uriproc/UriReference.hxx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/stoc/source/uriproc/UriReference.hxx b/stoc/source/uriproc/UriReference.hxx index d134334619c6..e052eee03f52 100644 --- a/stoc/source/uriproc/UriReference.hxx +++ b/stoc/source/uriproc/UriReference.hxx @@ -37,43 +37,60 @@ public: ~UriReference(); + /// @throws css::uno::RuntimeException OUString getUriReference() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException bool isAbsolute() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException const OUString& getScheme() throw (css::uno::RuntimeException) { return m_scheme;} + /// @throws css::uno::RuntimeException OUString getSchemeSpecificPart() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException bool isHierarchical() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException bool hasAuthority() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException OUString getAuthority() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException OUString getPath() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException bool hasRelativePath() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException sal_Int32 getPathSegmentCount() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException OUString getPathSegment(sal_Int32 index) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException bool hasQuery() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException OUString getQuery() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException bool hasFragment() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException OUString getFragment() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void setFragment(OUString const & fragment) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void clearFragment() throw (css::uno::RuntimeException); osl::Mutex m_mutex; |