:: com :: sun :: star :: ui ::

interface XUIConfiguration

Methods' Summary
addConfigurationListener adds the specified listener to receive events when elements are changed, inserted or removed.  
removeConfigurationListener removes the specified listener so it does not receive any events from this user interface configuration manager.  
Methods' Details
addConfigurationListener
void
addConfigurationListener( [in] XUIConfigurationListener  Listener );

Description
adds the specified listener to receive events when elements are changed, inserted or removed.

It is suggested to allow multiple registration of the same listener, thus for each time a listener is added, it has to be removed.

See also
XUIConfigurationListener

removeConfigurationListener
void
removeConfigurationListener( [in] XUIConfigurationListener  Listener );

Description
removes the specified listener so it does not receive any events from this user interface configuration manager.

It is suggested to allow multiple registration of the same listener, thus for each time a listener is added, it has to be removed.

See also
XUIConfigurationListener

Top of Page