:: com :: sun :: star :: reflection ::

interface XProxyFactory
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XProxyFactory
Description
Factory interface to produce proxy objects.

Methods' Summary
createProxy This method creates a new proxy object that acts on behalf of the given target object.
The proxy delegates calls to the given target object. In addition, it is aggregatable, thus it is possible to intercept calls on the proxy's interfaces. @attention The proxy object is UNO conform, but does NOT provide original target interfaces on queryInterface() calls. This may lead to problems regarding object identity, e.g. when dealing with listener proxies.
Methods' Details
createProxy
::com::sun::star::uno::XAggregation
createProxy(
 
[in] ::com::sun::star::uno::XInterface
 
xTarget );

Description
This method creates a new proxy object that acts on behalf of the given target object.
The proxy delegates calls to the given target object. In addition, it is aggregatable, thus it is possible to intercept calls on the proxy's interfaces. @attention The proxy object is UNO conform, but does NOT provide original target interfaces on queryInterface() calls. This may lead to problems regarding object identity, e.g. when dealing with listener proxies.
Parameter xTarget
target object
Returns
proxy object
Top of Page