interface XFactory in module com::sun::star::uno::

(Global Index)

[ DEPRECATED ]

Syntax

interface XFactory : com::sun::star::uno::XInterface ;

Description

creates new UNO objects.

If you implement a UNO server, you must provide one ore 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.

Method Summary

instancedObject creates a new UNO object.

Method Details



instancedObject

Syntax

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

Description

creates a new UNO object.

Top of Page