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

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

interface XLoadable

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

Description
interface provides functionality to implement objects which may be loaded.


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

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.

Methods' Details

load
 
[ oneway ] void
load();
Description
starts the data processing.
See also
XLoadListener
unload
 
[ oneway ] void
unload();
Description
stops the data processing.
See also
XLoadListener
reload
 
[ 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
 
boolean
isLoaded();
Description
returns if the object is in loaded state.
See also
XLoadListener
addLoadListener
 
[ oneway ] void
addLoadListener(
[ in ] 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
com::sun::star::form::XLoadListener
removeLoadListener
 
[ oneway ] void
removeLoadListener(
[ in ] com::sun::star::form::XLoadListener aListener );

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

Top of Page