| Class | Description | 
|---|---|
| diff_match_patch | Class containing the diff, match and patch methods. | 
| diff_match_patch.Diff | Class representing one diff operation. | 
| diff_match_patch.LinesToCharsResult | Internal class for returning results from diff_linesToChars(). | 
| diff_match_patch.Patch | Class representing one patch operation. | 
| LineBasedDiff | Extends  diff_match_patchwith a line-based diffing capability. | 
| Enum | Description | 
|---|---|
| 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.")} which means: delete
 "Hello", add "Goodbye" and keep " world." | 
Copyright (c) 2006, 2015 Obeo and others. All rights reserved.