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

com :: sun :: star :: form ::

interface XChangeBroadcaster

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

Description
provides functionality to notify listeners of context changes.
See also
XChangeBroadcaster


Known Services which Export this Interface

com::sun::star::form::control::ListBox describes a radio button usually used together with a ListBox model.
com::sun::star::form::control::TextField describes a radio button usually used together with a TextField model.

Methods' Summary

addChangeListener adds the specified listener to receive the "changed" event.
removeChangeListener removes the specified listener.

Methods' Details

addChangeListener
 
[ oneway ] void
addChangeListener(
[ in ] com::sun::star::form::XChangeListener aListener );

Description
adds the specified listener to receive the "changed" event.
Parameter aListener
the listener to add.
See also
com::sun::star::form::XChangeListener
removeChangeListener
 
[ oneway ] void
removeChangeListener(
[ in ] com::sun::star::form::XChangeListener aListener );

Description
removes the specified listener.
Parameter aListener
the listener to remove.
See also
com::sun::star::form::XChangeListener

Top of Page