interface XLoadListener in module com::sun::star::form::

(Global Index)

Syntax

interface XLoadListener : 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

XLoadable

Method 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.

Known Services Which Export this Interface

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

Method Details



loaded

Syntax

oneway void loaded (
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

Syntax

oneway void unloading (
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

Syntax

oneway void unloaded (
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

Syntax

oneway void reloading (
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

Syntax

oneway void reloaded (
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