Package | Description |
---|---|
name.fraser.neil.plaintext |
External sources.
|
Modifier and Type | Method and Description |
---|---|
java.util.LinkedList<diff_match_patch.Patch> |
diff_match_patch.patch_deepCopy(java.util.LinkedList<diff_match_patch.Patch> patches)
Given an array of patches, return another array that is identical.
|
java.util.List<diff_match_patch.Patch> |
diff_match_patch.patch_fromText(java.lang.String textline)
Parse a textual representation of patches and return a List of Patch
objects.
|
java.util.LinkedList<diff_match_patch.Patch> |
diff_match_patch.patch_make(java.util.LinkedList<diff_match_patch.Diff> diffs)
Compute a list of patches to turn text1 into text2.
|
java.util.LinkedList<diff_match_patch.Patch> |
diff_match_patch.patch_make(java.lang.String text1,
java.util.LinkedList<diff_match_patch.Diff> diffs)
Compute a list of patches to turn text1 into text2.
|
java.util.LinkedList<diff_match_patch.Patch> |
diff_match_patch.patch_make(java.lang.String text1,
java.lang.String text2)
Compute a list of patches to turn text1 into text2.
|
java.util.LinkedList<diff_match_patch.Patch> |
diff_match_patch.patch_make(java.lang.String text1,
java.lang.String text2,
java.util.LinkedList<diff_match_patch.Diff> diffs)
Deprecated.
Prefer patch_make(String text1, LinkedList
|
Modifier and Type | Method and Description |
---|---|
protected void |
diff_match_patch.patch_addContext(diff_match_patch.Patch patch,
java.lang.String text)
Increase the context until it is unique, but don't let the pattern expand
beyond Match_MaxBits.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
diff_match_patch.patch_addPadding(java.util.LinkedList<diff_match_patch.Patch> patches)
Add some padding on text start and end so that edges can match something.
|
java.lang.Object[] |
diff_match_patch.patch_apply(java.util.LinkedList<diff_match_patch.Patch> patches,
java.lang.String text)
Merge a set of patches onto the text.
|
java.util.LinkedList<diff_match_patch.Patch> |
diff_match_patch.patch_deepCopy(java.util.LinkedList<diff_match_patch.Patch> patches)
Given an array of patches, return another array that is identical.
|
void |
diff_match_patch.patch_splitMax(java.util.LinkedList<diff_match_patch.Patch> patches)
Look through the patches and break up any which are longer than the
maximum limit of the match algorithm.
|
java.lang.String |
diff_match_patch.patch_toText(java.util.List<diff_match_patch.Patch> patches)
Take a list of patches and return a textual representation.
|