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

(Global Index)

Syntax

interface XLoadable : com::sun::star::uno::XInterface ;

Description

interface provides functionality to implement objects which may be loaded.

Method Summary

load starts the data processing.

unload stops the data processing.

reload does a smart refresh of the object. The final state will be the same as if unload and load were called, but reload is the more efficient way to do the same. If the object isn't loaded, nothing happens.

isLoaded returns if the object is in loaded state.

addLoadListener adds the specified listener to receive events "loaded" and "unloaded".

removeLoadListener removes the specified listener.

Known Services Which Export this Interface

com::sun::star::form::component::DataForm

Method Details



load

Syntax

oneway void load ();

Description

starts the data processing.

See also

XLoadListener

unload

Syntax

oneway void unload ();

Description

stops the data processing.

See also

XLoadListener

reload

Syntax

oneway void reload ();

Description

does a smart refresh of the object. The final state will be the same as if unload and load were called, but reload is the more efficient way to do the same. If the object isn't loaded, nothing happens.

See also

XLoadListener

isLoaded

Syntax

boolean isLoaded ();

Description

returns if the object is in loaded state.

See also

XLoadListener

addLoadListener

Syntax

oneway void addLoadListener (
com::sun::star::form::XLoadListener aListener );

Description

adds the specified listener to receive events "loaded" and "unloaded".

Parameter aListener

the listener to add.

See also

XLoadListener

removeLoadListener

Syntax

oneway void removeLoadListener (
com::sun::star::form::XLoadListener aListener );

Description

removes the specified listener.

Parameter aListener

the listener to remove.

See also

XLoadListener
Top of Page