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

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

interface XDatabaseParameterBroadcaster

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

Description
provides the possibility of reveiving an event for configuration of parameters.


Known Services which Export this Interface

com::sun::star::form::component::DataForm This service specifies a form which is connected to a database and displays the results of SQL queries. It provides the possiblity of adding new data records, modifying existing ones, or deleting them.

Methods' Summary

addParameterListener adds the specified listener to receive the event "approveParameter".
removeParameterListener removes the specified listener.

Methods' Details

addParameterListener
 
[ oneway ] void
addParameterListener(
[ in ] com::sun::star::form::XDatabaseParameterListener aListener );

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

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

Top of Page