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. patchDeepCopy(LinkedList<DiffMatch.Patch> patches)Given an array of patches, return another array that is identical.List<DiffMatch.Patch>DiffMatch. patchFromText(String textline)Parse a textual representation of patches and return a List of Patch objects.List<DiffMatch.Patch>DiffMatch. patchMake(String text1, String text2)Compute a list of patches to turn text1 into text2.LinkedList<DiffMatch.Patch>DiffMatch. patchMake(String text1, LinkedList<DiffMatch.Diff> diffs)Compute a list of patches to turn text1 into text2.LinkedList<DiffMatch.Patch>DiffMatch. patchMake(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 StringDiffMatch. patchAddPadding(LinkedList<DiffMatch.Patch> patches)Add some padding on text start and end so that edges can match something.Object[]DiffMatch. patchApply(LinkedList<DiffMatch.Patch> patches, String text)Merge a set of patches onto the text.LinkedList<DiffMatch.Patch>DiffMatch. patchDeepCopy(LinkedList<DiffMatch.Patch> patches)Given an array of patches, return another array that is identical.voidDiffMatch. patchSplitMax(LinkedList<DiffMatch.Patch> patches)Look through the patches and break up any which are longer than the maximum limit of the match algorithm.StringDiffMatch. patchToText(List<DiffMatch.Patch> patches)Take a list of patches and return a textual representation.
-