diff options
Diffstat (limited to 'offapi/com/sun/star/ucb/ContentProviderProxy.idl')
-rw-r--r-- | offapi/com/sun/star/ucb/ContentProviderProxy.idl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/offapi/com/sun/star/ucb/ContentProviderProxy.idl b/offapi/com/sun/star/ucb/ContentProviderProxy.idl index 27d385364..bc41677b6 100644 --- a/offapi/com/sun/star/ucb/ContentProviderProxy.idl +++ b/offapi/com/sun/star/ucb/ContentProviderProxy.idl @@ -48,8 +48,8 @@ module com { module sun { module star { module ucb { <p>Implementing a content provider proxy can be useful if the creation of the real content provider object shall be deferred for some reason - (i.e. performance) until the first method gets called on it. Instaead of - instanciating and registering the real provider at the UCB, a proxy for + (i.e. performance) until the first method gets called on it. Instead of + instantiating and registering the real provider at the UCB, a proxy for the real provider can be created and registered at the UCB. @see XContentProviderProxyFactory @@ -59,7 +59,7 @@ published service ContentProviderProxy //------------------------------------------------------------------------- /** The implementation of <member scope="com::sun::star::uno">XInterface::queryInterface</member> - must instanciate the real provider and return the return value + must instantiate the real provider and return the return value of a queryInterface call at the real provider, except for queries for the interfaces implemented by the proxy itself. So the caller of the queryInterface method at the proxy will get access to the real @@ -77,12 +77,12 @@ published service ContentProviderProxy interface com::sun::star::ucb::XContentProviderSupplier; //------------------------------------------------------------------------- - /** a content provider implementation that wrappes the original provider. + /** a content provider implementation that wraps the original provider. */ interface com::sun::star::ucb::XContentProvider; //------------------------------------------------------------------------- - /** a parameterized content provider implementation that wrappes the + /** a parameterized content provider implementation that wraps the original provider. */ interface com::sun::star::ucb::XParameterizedContentProvider; |