Package com.acrolinx.sidebar.utils
Class DiffMatchPatch.Patch
- java.lang.Object
-
- com.acrolinx.sidebar.utils.DiffMatchPatch.Patch
-
- Enclosing class:
- DiffMatchPatch
public static class DiffMatchPatch.Patch extends java.lang.Object
Class representing one patch operation.
-
-
Constructor Summary
Constructors Constructor Description Patch()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Emulate GNU diff's format.
-
-
-
Field Detail
-
diffs
public java.util.LinkedList<DiffMatchPatch.Diff> diffs
-
start1
public int start1
-
start2
public int start2
-
length1
public int length1
-
length2
public int length2
-
-