interface XEventListener in module com::sun::star::lang::

(Global Index)

Syntax

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

Description

base interface for all event listeners interfaces.

Method Summary

disposing gets called when the broadcaster is about to be disposed.

Method Details



disposing

Syntax

void disposing (
com::sun::star::lang::EventObject Source );

Description

gets called when the broadcaster is about to be disposed.

All listeners and all other objects, which reference the broadcaster should release the reference to the source. No method should be invoked anymore on this object ( including XComponent::removeEventListener ).

Top of Page