Uses of Class
com.logicaldoc.comparison.basic.DiffMatch.Patch
-
Packages that use DiffMatch.Patch Package Description com.logicaldoc.comparison.basic -
-
Uses of DiffMatch.Patch in com.logicaldoc.comparison.basic
Methods in com.logicaldoc.comparison.basic that return types with arguments of type DiffMatch.Patch Modifier and Type Method Description LinkedList<DiffMatch.Patch>
DiffMatch. patch_deepCopy(LinkedList<DiffMatch.Patch> patches)
Given an array of patches, return another array that is identical.List<DiffMatch.Patch>
DiffMatch. patch_fromText(String textline)
Parse a textual representation of patches and return a List of Patch objects.LinkedList<DiffMatch.Patch>
DiffMatch. patch_make(String text1, String text2)
Compute a list of patches to turn text1 into text2.LinkedList<DiffMatch.Patch>
DiffMatch. patch_make(String text1, LinkedList<DiffMatch.Diff> diffs)
Compute a list of patches to turn text1 into text2.LinkedList<DiffMatch.Patch>
DiffMatch. patch_make(LinkedList<DiffMatch.Diff> diffs)
Compute a list of patches to turn text1 into text2.Method parameters in com.logicaldoc.comparison.basic with type arguments of type DiffMatch.Patch Modifier and Type Method Description String
DiffMatch. patch_addPadding(LinkedList<DiffMatch.Patch> patches)
Add some padding on text start and end so that edges can match something.Object[]
DiffMatch. patch_apply(LinkedList<DiffMatch.Patch> patches, String text)
Merge a set of patches onto the text.LinkedList<DiffMatch.Patch>
DiffMatch. patch_deepCopy(LinkedList<DiffMatch.Patch> patches)
Given an array of patches, return another array that is identical.void
DiffMatch. patch_splitMax(LinkedList<DiffMatch.Patch> patches)
Look through the patches and break up any which are longer than the maximum limit of the match algorithm.String
DiffMatch. patch_toText(List<DiffMatch.Patch> patches)
Take a list of patches and return a textual representation.
-