Interface DocumentObserver
- All Known Implementing Classes:
DocumentDetailsPanel
,DocumentSelectorDocumentsListGrid
,DocumentsListGrid
,DocumentsPanel
,DocumentsTileGrid
,HitsListPanel
,MainMenu
,NavigatorDocumentsGrid
,SearchHitsGrid
,SearchIndexEntriesGrid
,SearchPanel
,Session
public interface DocumentObserver
Listener on documents events
- Since:
- 6.7
- Author:
- Marco Meschieri - LogicalDOC
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onDocumentBeginEditing
(GUIDocument document) Invoked after the document's properties are being editedvoid
onDocumentCancelEditing
(GUIDocument document) Invoked after the document's properties are being editedvoid
onDocumentCheckedIn
(GUIDocument document) Invoked after the document's checkinvoid
onDocumentCheckedOut
(GUIDocument document) Invoked after the document's checkoutvoid
onDocumentLocked
(GUIDocument document) Invoked after the document is lockedvoid
onDocumentModified
(GUIDocument document) Invoked after the document's properties has been changedvoid
onDocumentMoved
(GUIDocument document) Invoked after the document has been storedvoid
onDocumentsDeleted
(GUIDocument[] documents) Invoked after the document has been deletedvoid
onDocumentSelected
(GUIDocument document) Invoked when a document is selectedvoid
onDocumentStored
(GUIDocument document) Invoked after the document has been storedvoid
onDocumentUnlocked
(GUIDocument document) Invoked after the document is unlocked
-
Method Details
-
onDocumentSelected
Invoked when a document is selected- Parameters:
document
- the document that has been selected
-
onDocumentModified
Invoked after the document's properties has been changed- Parameters:
document
- the document that has been modified
-
onDocumentBeginEditing
Invoked after the document's properties are being edited- Parameters:
document
- the document that is being edited
-
onDocumentCancelEditing
Invoked after the document's properties are being edited- Parameters:
document
- the document that is being edited
-
onDocumentStored
Invoked after the document has been stored- Parameters:
document
- the document that has been stored
-
onDocumentMoved
Invoked after the document has been stored- Parameters:
document
- the document that has been moved
-
onDocumentCheckedIn
Invoked after the document's checkin- Parameters:
document
- the document that has been checked in
-
onDocumentCheckedOut
Invoked after the document's checkout- Parameters:
document
- the document that has been checked out
-
onDocumentLocked
Invoked after the document is locked- Parameters:
document
- the document that has been locked
-
onDocumentUnlocked
Invoked after the document is unlocked- Parameters:
document
- the document that has been unlocked
-
onDocumentsDeleted
Invoked after the document has been deleted- Parameters:
documents
- the documents that have been deleted
-