@API(type=EXTENDABLE,
src=PUBLIC)
public interface CompoundEditListener
Please note that this API is not marked as final and it can change in one of the next versions of the application. If you have suggestions, comments about it, please let us know.
Modifier and Type | Method and Description |
---|---|
default void |
compoundEditCancelled()
Called when a compound edit was cancelled.
|
default void |
compoundEditEnded()
Called when a compound edit was ended.
|
default void |
compoundEditStarted()
Called when a compound edit was started.
|
default void compoundEditStarted()
AuthorDocumentController.beginCompoundEdit()
.
Note that this callback will not be invoked for nested calls of AuthorDocumentController.beginCompoundEdit()
,
but only for the first one.default void compoundEditEnded()
AuthorDocumentController.endCompoundEdit()
.
Note that this callback will not be invoked for nested calls of AuthorDocumentController.endCompoundEdit()
,
but only for the last one.default void compoundEditCancelled()
AuthorDocumentController.cancelCompoundEdit()
.
When a compound edit is cancelled, the edits performed so far are automatically undone
before this callback is invoked. After that, an compoundEditEnded()
call is also received.© Copyright Syncro Soft SRL 2002 - 2020. All rights reserved.