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

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

interface XProxyFactory

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

Description
You can create proxy interfaces via this interface.


Known Services which Export this Interface

com::sun::star::reflection::ProxyFactory Specifies a factory object to create proxy objects.
These proxy object represent a given target object and can be be aggregated. The proxy objects are UNO conforming and do NOT provide original target interfaces on queryInterface() calls.
com::sun::star::reflection::ProxyFactory Specifies a factory object to create proxy objects.
These proxy object represent a given target object and can be be aggregated. The proxy objects are UNO conforming and do NOT provide original target interfaces on queryInterface() calls.

Methods' Summary

createProxy Creates a new object that represents the given target object and can be aggregated. The proxy object acts UNO conforming and does NOT provide original target interfaces on queryInterface() calls.
Be careful, e.g., when registering as a listener at the proxy, you will get event notification from the original object, meaning a different object!

Methods' Details

createProxy
 
com::sun::star::uno::XAggregation
createProxy(
[ in ] com::sun::star::uno::XInterface xTarget );

Description
Creates a new object that represents the given target object and can be aggregated. The proxy object acts UNO conforming and does NOT provide original target interfaces on queryInterface() calls.
Be careful, e.g., when registering as a listener at the proxy, you will get event notification from the original object, meaning a different object!

Top of Page