Interface ComparisonDialogListener

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.
      • onError

         abstract void onError(@NonNull() Throwable error)

        Gets called when the Comparison doesn't go as expected. The provided error holds additional information about the problem.

        Parameters:
        error - The error object containing a description of what went wrong.