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

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

interface XLoadListener

Base Interface
com::sun::star::lang::XEventListener

Description
receives "loaded" and "unloaded" events posted by a loadable object.

The interface is typically implemented by data-bound components, which want to listen to the data source that contains their database form.

See also
com::sun::star::form::XLoadable


Known Services which Export this Interface

com::sun::star::form::DataAwareControlModel is an abstract service for specialized FormControlModel s which are data aware and thus can be bound to a data source.

Methods' Summary

loaded is invoked when the object has successfully connected to a datasource.
unloading is invoked when the object is about to be unloaded. Components may use this to stop any other event processing related to the event source before the object is unloaded.
unloaded is invoked after the object has disconnected from a datasource.
reloading is invoked when the object is about to be reloaded. Components may use this to stop any other event processing related to the event source until they get the reloaded event.
reloaded is invoked when the object has been reloaded.

Methods' Details

loaded
 
[ oneway ] void
loaded(
[ in ] com::sun::star::lang::EventObject aEvent );

Description
is invoked when the object has successfully connected to a datasource.
Parameter aEvent
the event happend.
See also
XLoadable
unloading
 
[ oneway ] void
unloading(
[ in ] com::sun::star::lang::EventObject aEvent );

Description
is invoked when the object is about to be unloaded. Components may use this to stop any other event processing related to the event source before the object is unloaded.
Parameter aEvent
the event happend.
See also
XLoadable
unloaded
 
[ oneway ] void
unloaded(
[ in ] com::sun::star::lang::EventObject aEvent );

Description
is invoked after the object has disconnected from a datasource.
Parameter aEvent
the event happend.
See also
XLoadable
reloading
 
[ oneway ] void
reloading(
[ in ] com::sun::star::lang::EventObject aEvent );

Description
is invoked when the object is about to be reloaded. Components may use this to stop any other event processing related to the event source until they get the reloaded event.
Parameter aEvent
the event happend.
See also
XLoadable
reloaded
 
[ oneway ] void
reloaded(
[ in ] com::sun::star::lang::EventObject aEvent );

Description
is invoked when the object has been reloaded.
Parameter aEvent
the event happend.
See also
XLoadable

Top of Page