interface XProxyFactory in module com::sun::star::reflection::

(Global Index)

Syntax

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

Description

You can create proxy interfaces via this interface.

Method Summary

createProxy Creates a new object that represents the given target object and can be aggregated. The proxy object acts UNO conform 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!

Method Details



createProxy

Syntax

com::sun::star::uno::XAggregation createProxy (
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 conform 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