From 491f9a6ce4ab670145833dbcdd2b2ae5fe824c68 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 19 Jan 2017 17:50:46 +0100 Subject: New loplugin:dynexcspec: Add @throws documentation, stoc Change-Id: I8c7d5088aed055c3734165343189233b3124c9be --- stoc/source/uriproc/UriReference.hxx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'stoc/source/uriproc/UriReference.hxx') 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; -- cgit