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

interface XListEntryBroadcaster
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XListEntryBroadcaster
Description
specifies a source of string list entries which notifies changes in this list
See also
XListEntrySource
See also
XListEntryListener

Methods' Summary
addListEntryListener adds a listener which will be notified about changes in the list reflected by the component.
removeListEntryListener revokes the given listener from the list of components which will be notfiied about changes in the entry list.
Methods' Details
addListEntryListener
void
addListEntryListener(
 
[in] XListEntryListener 

raises(

 
Listener ) 
::com::sun::star::lang::NullPointerException );

Description
adds a listener which will be notified about changes in the list reflected by the component.
Throws
::com::sun::star::lang::NullPointerException if the given listener is NULL
removeListEntryListener
void
removeListEntryListener(
 
[in] XListEntryListener 

raises(

 
Listener ) 
::com::sun::star::lang::NullPointerException );

Description
revokes the given listener from the list of components which will be notfiied about changes in the entry list.
Throws
::com::sun::star::lang::NullPointerException if the given listener is NULL
Top of Page