Package com.pspdfkit.ui.redaction
Interface RedactionView.RedactionViewListener
-
- All Implemented Interfaces:
public interface RedactionView.RedactionViewListener
Listener receiving calls when redaction events are triggered.
-
-
Method Summary
Modifier and Type Method Description abstract void
onRedactionsApplied()
Called when the apply redactions button was clicked. abstract void
onRedactionsCleared()
Called when the clear redaction buttons was clicked. abstract void
onPreviewModeChanged(boolean previewEnabled)
Called when the enabled / disable redaction preview button was clicked. -
-
Method Detail
-
onRedactionsApplied
abstract void onRedactionsApplied()
Called when the apply redactions button was clicked.
-
onRedactionsCleared
abstract void onRedactionsCleared()
Called when the clear redaction buttons was clicked.
-
onPreviewModeChanged
abstract void onPreviewModeChanged(boolean previewEnabled)
Called when the enabled / disable redaction preview button was clicked.
- Parameters:
previewEnabled
-true
if redactions should be previewed,false
if they should just be rendered as marks.
-
-
-
-