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

com :: sun :: star :: util ::

interface XRefreshable

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

Description
is supported by objects with data that can be refreshed from a data source.


Known Services which Export this Interface

com::sun::star::form::component::DatabaseForm [ DEPRECATED ]
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.
com::sun::star::sheet::CellAreaLink a linked cell range.
com::sun::star::sheet::DataPilotSource a data pilot source.
com::sun::star::sheet::DDELink A DDE link controls the results of a DDE spreadsheet formula.
com::sun::star::sheet::SheetLink A sheet link represents the source data of linked sheets.
com::sun::star::sdbcx::Container describes every container which is used for data definition. Each container must support access to its elements by the element's name or by the element's position.
com::sun::star::sdb::DefinitionContainer describes a container which provides access to database related definitions like commands, forms, and reports.
com::sun::star::text::TextFields This is a collection of TextField instances.
com::sun::star::text::TextDocument A text document is a model component which contains text structured by paragraphs.

Methods' Summary

refresh refreshes the data of the object from the connected data source.
addRefreshListener adds the specified listener to receive the event "refreshed."
removeRefreshListener removes the specified listener.

Methods' Details

refresh
 
void
refresh();
Description
refreshes the data of the object from the connected data source.
addRefreshListener
 
[ oneway ] void
addRefreshListener(
[ in ] com::sun::star::util::XRefreshListener l );

Description
adds the specified listener to receive the event "refreshed."
removeRefreshListener
 
[ oneway ] void
removeRefreshListener(
[ in ] com::sun::star::util::XRefreshListener l );

Description
removes the specified listener.

Top of Page