Uses of Class
psidev.psi.mi.jami.enricher.util.diff.diff_match_patch.Diff
-
Packages that use diff_match_patch.Diff Package Description psidev.psi.mi.jami.enricher.util.diff -
-
Uses of diff_match_patch.Diff in psidev.psi.mi.jami.enricher.util.diff
Subclasses of diff_match_patch.Diff in psidev.psi.mi.jami.enricher.util.diff Modifier and Type Class Description class
Diff
Extension of diff_match_patch.DiffFields in psidev.psi.mi.jami.enricher.util.diff with type parameters of type diff_match_patch.Diff Modifier and Type Field Description LinkedList<diff_match_patch.Diff>
diff_match_patch.Patch. diffs
Methods in psidev.psi.mi.jami.enricher.util.diff that return types with arguments of type diff_match_patch.Diff Modifier and Type Method Description protected LinkedList<diff_match_patch.Diff>
diff_match_patch. diff_compute(String text1, String text2, boolean checklines)
Find the differences between two texts.LinkedList<diff_match_patch.Diff>
diff_match_patch. diff_fromDelta(String text1, String delta)
Given the original text1, and an encoded string which describes the operations required to transform text1 into text2, compute the full diff.LinkedList<diff_match_patch.Diff>
diff_match_patch. diff_main(String text1, String text2)
Find the differences between two texts.LinkedList<diff_match_patch.Diff>
diff_match_patch. diff_main(String text1, String text2, boolean checklines)
Find the differences between two texts.protected LinkedList<diff_match_patch.Diff>
diff_match_patch. diff_map(String text1, String text2)
Explore the intersection points between the two texts.protected LinkedList<diff_match_patch.Diff>
diff_match_patch. diff_path1(List<Set<Long>> v_map, String text1, String text2)
Work from the middle back to the start to determine the path.protected LinkedList<diff_match_patch.Diff>
diff_match_patch. diff_path2(List<Set<Long>> v_map, String text1, String text2)
Work from the middle back to the end to determine the path.Method parameters in psidev.psi.mi.jami.enricher.util.diff with type arguments of type diff_match_patch.Diff Modifier and Type Method Description protected void
diff_match_patch. diff_charsToLines(LinkedList<diff_match_patch.Diff> diffs, List<String> lineArray)
Rehydrate the text in a diff from a string of line hashes to real lines of text.void
diff_match_patch. diff_cleanupEfficiency(LinkedList<diff_match_patch.Diff> diffs)
Reduce the number of edits by eliminating operationally trivial equalities.void
diff_match_patch. diff_cleanupMerge(LinkedList<diff_match_patch.Diff> diffs)
Reorder and merge like edit sections.void
diff_match_patch. diff_cleanupSemantic(LinkedList<diff_match_patch.Diff> diffs)
Reduce the number of edits by eliminating semantically trivial equalities.void
diff_match_patch. diff_cleanupSemanticLossless(LinkedList<diff_match_patch.Diff> diffs)
Look for single edits surrounded on both sides by equalities which can be shifted sideways to align the edit to a word boundary.String
diff_match_patch. diff_prettyHtml(LinkedList<diff_match_patch.Diff> diffs)
Convert a Diff list into a pretty HTML report.String
diff_match_patch. diff_text1(LinkedList<diff_match_patch.Diff> diffs)
Compute and return the source text (all equalities and deletions).String
diff_match_patch. diff_text2(LinkedList<diff_match_patch.Diff> diffs)
Compute and return the destination text (all equalities and insertions).String
diff_match_patch. diff_toDelta(LinkedList<diff_match_patch.Diff> diffs)
Crush the diff into an encoded string which describes the operations required to transform text1 into text2.int
diff_match_patch. diff_xIndex(LinkedList<diff_match_patch.Diff> diffs, int loc)
loc is a location in text1, compute and return the equivalent location in text2.LinkedList<diff_match_patch.Patch>
diff_match_patch. patch_make(String text1, String text2, LinkedList<diff_match_patch.Diff> diffs)
Compute a list of patches to turn text1 into text2.LinkedList<diff_match_patch.Patch>
diff_match_patch. patch_make(LinkedList<diff_match_patch.Diff> diffs)
Compute a list of patches to turn text1 into text2.Constructors in psidev.psi.mi.jami.enricher.util.diff with parameters of type diff_match_patch.Diff Constructor Description Diff(diff_match_patch.Diff diff, int indexInString1, int indexInString2)
Constructor for Diff.
-