Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: loader ::

interface XImplementationLoader

Base Interface
com::sun::star::uno::XInterface

Description
defines the interface for classes that manage all the work needed to instantiate an implementation.
See also
XImplementationRegistration


Known Services which Export this Interface

com::sun::star::loader::Dynamic makes it possible to access services accessible via a UnoUrlResolver E.g., instantiation of services in another process
com::sun::star::loader::SharedLibrary makes it possible to access the services implemented in a shared library.
com::sun::star::loader::Java makes it possible to access the services implemented in a Java class file.
com::sun::star::loader::Dynamic makes it possible to access services accessible via a UnoUrlResolver E.g., instantiation of services in another process
com::sun::star::loader::SharedLibrary makes it possible to access the services implemented in a shared library.
com::sun::star::loader::Java makes it possible to access the services implemented in a Java class file.

Methods' Summary

activate activates an external service factory.
writeRegistryInfo writes information about implementations in the registry. An implementation supports one or more services. This and more information will be written in the registry. This function is called when an implementation is registered.

Methods' Details

activate
 
com::sun::star::uno::XInterface
activate(
[ in ] string implementationName,
[ in ] string implementationLoaderUrl,
[ in ] string locationUrl,
[ in ] com::sun::star::registry::XRegistryKey xKey )
raises ( com::sun::star::loader::CannotActivateFactoryException );

Description
activates an external service factory.
writeRegistryInfo
 
boolean
writeRegistryInfo(
[ in ] com::sun::star::registry::XRegistryKey xKey,
[ in ] string implementationLoaderUrl,
[ in ] string locationUrl )
raises ( com::sun::star::registry::CannotRegisterImplementationException );

Description
writes information about implementations in the registry. An implementation supports one or more services. This and more information will be written in the registry. This function is called when an implementation is registered.
See also
com::sun::star::repos::XImplementationRegistration

Top of Page