Package com.jaxfront.core.util.diff

Interface Summary
DiffTool.ScriptBuilder  
 

Class Summary
diff_match_patch Class containing the diff, match and patch methods.
diff_match_patch.Diff Class representing one diff operation.
diff_match_patch.Patch Class representing one patch operation.
DiffTool A class to compare vectors of objects.
DiffTool.change The result of comparison is an "edit script": a chain of change objects.
DiffToolPrint A simple framework for printing change lists produced by Diff.
DiffToolPrint.Base A Base class for printing edit scripts produced by Diff.
DiffToolPrint.ContextPrint Prints an edit script in context diff format.
DiffToolPrint.EdPrint Prints an edit script in a format suitable for input to ed.
DiffToolPrint.NormalPrint Print a change list in the standard diff format.
DiffToolPrint.UnifiedPrint Prints an edit script in context diff format.
 

Enum Summary
diff_match_patch.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.")}