Package com.logicaldoc.comparison.basic


package com.logicaldoc.comparison.basic
  • Class
    Description
    A comparator that simply compare texts without taking care of the formatting
    Class containing the diff, match and patch methods.
    Class representing one diff operation.
    The data structure representing a diff is a Linked list of Diff objects: {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"), Diff(Operation.EQUAL, " world.")} which means: delete "Hello", add "Goodbye" and keep " world."
    Class representing one patch operation.