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

interface XDataEditor
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XDataEditor
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();
 
 

Returns
the data model which was set by XDataEditor::setModel .
addDataEditorListener
void
addDataEditorListener(
 
[in] XDataEditorListener
 
listener );

Description
registers a listener to receive DataEditorEvent s.
removeDataEditorListener
void
removeDataEditorListener(
 
[in] XDataEditorListener
 
listener );

Description
unregisters a listener which received DataEditorEvent s.
Top of Page