- defaultProperties() - Method in class ingenias.module.CodeUploader
-
This module defines no properties
- diff_bisect(String, String, long) - Method in class ingenias.module.diff_match_patch
-
Find the 'middle snake' of a diff, split the problem in two
and return the recursively constructed diff.
- diff_charsToLines(LinkedList<diff_match_patch.Diff>, List<String>) - Method in class ingenias.module.diff_match_patch
-
Rehydrate the text in a diff from a string of line hashes to real lines of
text.
- diff_cleanupEfficiency(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Reduce the number of edits by eliminating operationally trivial equalities.
- diff_cleanupMerge(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Reorder and merge like edit sections.
- diff_cleanupSemantic(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Reduce the number of edits by eliminating semantically trivial equalities.
- diff_cleanupSemanticLossless(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Look for single edits surrounded on both sides by equalities
which can be shifted sideways to align the edit to a word boundary.
- diff_commonOverlap(String, String) - Method in class ingenias.module.diff_match_patch
-
Determine if the suffix of one string is the prefix of another.
- diff_commonPrefix(String, String) - Method in class ingenias.module.diff_match_patch
-
Determine the common prefix of two strings
- diff_commonSuffix(String, String) - Method in class ingenias.module.diff_match_patch
-
Determine the common suffix of two strings
- Diff_EditCost - Variable in class ingenias.module.diff_match_patch
-
Cost of an empty edit operation in terms of edit characters.
- diff_fromDelta(String, String) - Method in class ingenias.module.diff_match_patch
-
Given the original text1, and an encoded string which describes the
operations required to transform text1 into text2, compute the full diff.
- diff_halfMatch(String, String) - Method in class ingenias.module.diff_match_patch
-
Do the two texts share a substring which is at least half the length of
the longer text?
This speedup can produce non-minimal diffs.
- diff_levenshtein(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Compute the Levenshtein distance; the number of inserted, deleted or
substituted characters.
- diff_linesToChars(String, String) - Method in class ingenias.module.diff_match_patch
-
Split two texts into a list of strings.
- diff_main(String, String) - Method in class ingenias.module.diff_match_patch
-
Find the differences between two texts.
- diff_main(String, String, boolean) - Method in class ingenias.module.diff_match_patch
-
Find the differences between two texts.
- diff_match_patch - Class in ingenias.module
-
Class containing the diff, match and patch methods.
- diff_match_patch() - Constructor for class ingenias.module.diff_match_patch
-
- diff_match_patch.Diff - Class in ingenias.module
-
Class representing one diff operation.
- diff_match_patch.Diff(diff_match_patch.Operation, String) - Constructor for class ingenias.module.diff_match_patch.Diff
-
Constructor.
- diff_match_patch.LinesToCharsResult - Class in ingenias.module
-
Internal class for returning results from diff_linesToChars().
- diff_match_patch.LinesToCharsResult(String, String, List<String>) - Constructor for class ingenias.module.diff_match_patch.LinesToCharsResult
-
- diff_match_patch.Operation - Enum in ingenias.module
-
The data structure representing a diff is a Linked list of Diff objects:
{Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"),
Diff(Operation.EQUAL, " world.")}
which means: delete "Hello", add "Goodbye" and keep " world."
- diff_match_patch.Patch - Class in ingenias.module
-
Class representing one patch operation.
- diff_match_patch.Patch() - Constructor for class ingenias.module.diff_match_patch.Patch
-
Constructor.
- diff_prettyHtml(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Convert a Diff list into a pretty HTML report.
- diff_text1(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Compute and return the source text (all equalities and deletions).
- diff_text2(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Compute and return the destination text (all equalities and insertions).
- Diff_Timeout - Variable in class ingenias.module.diff_match_patch
-
Number of seconds to map a diff before giving up (0 for infinity).
- diff_toDelta(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
-
Crush the diff into an encoded string which describes the operations
required to transform text1 into text2.
- diff_xIndex(LinkedList<diff_match_patch.Diff>, int) - Method in class ingenias.module.diff_match_patch
-
loc is a location in text1, compute and return the equivalent location in
text2.
- DifferencesFinder - Class in ingenias.module
-
- DifferencesFinder() - Constructor for class ingenias.module.DifferencesFinder
-
- diffs - Variable in class ingenias.module.diff_match_patch.Patch
-