Package com.pspdfkit.document.processor
Interface ComparisonDialogListener
-
- All Implemented Interfaces:
public interface ComparisonDialogListener
This interface provides a callback when performing document comparison using the DocumentComparisonDialog.
-
-
Method Summary
Modifier and Type Method Description abstract void
onComparisonSuccessful(@NonNull() DocumentSource comparisonDocument)
Gets called when the document alignment and comparison process has been completed. abstract void
onError(@NonNull() Throwable error)
Gets called when the Comparison doesn't go as expected. -
-
Method Detail
-
onComparisonSuccessful
abstract void onComparisonSuccessful(@NonNull() DocumentSource comparisonDocument)
Gets called when the document alignment and comparison process has been completed. The provided
comparisonDocument
can be used to display the final comparison results in the UI.- Parameters:
comparisonDocument
- Comparison results document source.
-
-
-
-