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

(Global Index)

Syntax

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

Description

must be implemented by anyone who holds the adapter on the client side.

See also

XWeak
for decription af concepts.

Method Summary

dispose removes all references to the adapter.

Method Details



dispose

Syntax

oneway void dispose ();

Description

removes all references to the adapter.

This method is called when the adapted object dies. The implementation of the client-side's weak reference must include removal of all references to the adapter. Otherwise the adapted object will be destroyed, but the adapter will be alive.

Top of Page