All Classes and Interfaces
Class
Description
Class containing the diff, match and patch methods.
Class representing one diff operation.
Internal class for returning results from diff_linesToChars().
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.