summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/lang/XMultiComponentFactory.idl
diff options
context:
space:
mode:
Diffstat (limited to 'udkapi/com/sun/star/lang/XMultiComponentFactory.idl')
-rw-r--r--udkapi/com/sun/star/lang/XMultiComponentFactory.idl15
1 files changed, 8 insertions, 7 deletions
diff --git a/udkapi/com/sun/star/lang/XMultiComponentFactory.idl b/udkapi/com/sun/star/lang/XMultiComponentFactory.idl
index 6b46d9fd104c..fd177150b23b 100644
--- a/udkapi/com/sun/star/lang/XMultiComponentFactory.idl
+++ b/udkapi/com/sun/star/lang/XMultiComponentFactory.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XMultiComponentFactory.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2001-11-16 14:57:39 $
+ * last change: $Author: dbo $ $Date: 2002-01-23 08:52:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -70,8 +70,10 @@
module com { module sun { module star { module lang {
-/** Factory object for launching component instances giving a context from
+/** Factory interface for creating component instances giving a context from
which to retrieve deployment values.
+
+ @see XInitialization
*/
interface XMultiComponentFactory : com::sun::star::uno::XInterface
{
@@ -91,10 +93,9 @@ interface XMultiComponentFactory : com::sun::star::uno::XInterface
raises (com::sun::star::uno::Exception);
/** Creates an instance of a component which supports the
- services specified by the factory, and initializes the new object
+ services specified by the factory, and initializes the new instance
with the given arguments and context.
- @see XInitialization::init
@param ServiceSpecifier
service name
@param Arguments
@@ -110,10 +111,10 @@ interface XMultiComponentFactory : com::sun::star::uno::XInterface
[in] com::sun::star::uno::XComponentContext Context )
raises (com::sun::star::uno::Exception);
- /** Gets the service names of all supported services.
+ /** Gets the names of all supported services.
@returns
- sequence of all service names which can be instantiated.
+ sequence of all service names
*/
sequence< string > getAvailableServiceNames();
};