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

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

interface XDataEditor

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

Description
connects to a model and broadcasts status change events.


Methods' Summary

show makes the data editor visible to the user.
setModel connects the data editor to a data model.
getModel
addDataEditorListener registers a listener to receive DataEditorEvent s.
removeDataEditorListener unregisters a listener which received DataEditorEvent s.

Methods' Details

show
 
void
show();
Description
makes the data editor visible to the user.
setModel
 
void
setModel(
[ in ] com::sun::star::uno::XInterface model );

Description
connects the data editor to a data model.
getModel
 
com::sun::star::uno::XInterface
getModel();
addDataEditorListener
 
void
addDataEditorListener(
[ in ] com::sun::star::util::XDataEditorListener listener );

Description
registers a listener to receive DataEditorEvent s.
removeDataEditorListener
 
void
removeDataEditorListener(
[ in ] com::sun::star::util::XDataEditorListener listener );

Description
unregisters a listener which received DataEditorEvent s.

Top of Page