summaryrefslogtreecommitdiff
path: root/scripting/source/provider/ProviderCache.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/source/provider/ProviderCache.hxx')
-rw-r--r--scripting/source/provider/ProviderCache.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripting/source/provider/ProviderCache.hxx b/scripting/source/provider/ProviderCache.hxx
index af244796dc40..967f50cef269 100644
--- a/scripting/source/provider/ProviderCache.hxx
+++ b/scripting/source/provider/ProviderCache.hxx
@@ -52,20 +52,25 @@ class ProviderCache
{
public:
+ /// @throws css::uno::RuntimeException
ProviderCache( const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Sequence< css::uno::Any >& scriptContext )
throw ( css::uno::RuntimeException );
+ /// @throws css::uno::RuntimeException
ProviderCache( const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Sequence< css::uno::Any >& scriptContext,
const css::uno::Sequence< OUString >& blackList )
throw ( css::uno::RuntimeException );
~ProviderCache();
css::uno::Reference< css::script::provider::XScriptProvider >
getProvider( const OUString& providerName );
+ /// @throws css::uno::RuntimeException
css::uno::Sequence < css::uno::Reference< css::script::provider::XScriptProvider > >
getAllProviders() throw ( css::uno::RuntimeException );
private:
+ /// @throws css::uno::RuntimeException
void populateCache()
throw ( css::uno::RuntimeException );
+ /// @throws css::uno::RuntimeException
css::uno::Reference< css::script::provider::XScriptProvider >
createProvider( ProviderDetails& details ) throw ( css::uno::RuntimeException );
bool isInBlackList( const OUString& serviceName )