Package com.pspdfkit.undo
Interface OnAddNewEditListener
-
- All Implemented Interfaces:
public interface OnAddNewEditListener
Listener to notify when a new edit is going to be added.
-
-
Method Summary
Modifier and Type Method Description abstract Boolean
onAddNewEdit(Edit edit)
Notifies the observer that the a new edit is going to be added. -
-
Method Detail
-
onAddNewEdit
abstract Boolean onAddNewEdit(Edit edit)
Notifies the observer that the a new edit is going to be added. Return false to cancel adding this Edit.
- Parameters:
edit
- The edit that is going to be added.- Returns:
false to cancel adding the edit or true to continue adding.
-
-
-
-