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

com :: sun :: star :: uno ::

interface XFactory

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

[ DEPRECATED ]
Description
creates new UNO objects.

If you implement a UNO server, you must provide one or more XFactory interfaces to the UNO runtime via UNO_registerFactory() .

By this call you register your own implementation to create a named object. If any client wants to create this object, the method XFactory::instancedObject() of the registered factory interface is called.



Methods' Summary

instancedObject creates a new UNO object.

Methods' Details

instancedObject
 
boolean
instancedObject(
[ in ] string aObj,
[ in ] com::sun::star::uno::XInterface xHld,
[ in ] com::sun::star::uno::Uik aUik,
[ out ] com::sun::star::uno::XInterface xNew );

Description
creates a new UNO object.

Top of Page