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

com :: sun :: star :: lang ::

interface XEventListener

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

Description
base interface for all event listeners interfaces.


Methods' Summary

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

Methods' Details

disposing
 
void
disposing(
[ in ] 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 ).

This method is called for every listener registration of derived listener interfaced, not only for registrations at XComponent .


Top of Page