C D E G H I L M O P R S T V 

C

chars1 - Variable in class ingenias.module.diff_match_patch.LinesToCharsResult
 
chars2 - Variable in class ingenias.module.diff_match_patch.LinesToCharsResult
 
CodeUploader - Class in ingenias.module
This class uploads code from tasks back into the
CodeUploader(String) - Constructor for class ingenias.module.CodeUploader
Initialises the class with a file containing a INGENIAS specification
CodeUploader(Browser) - Constructor for class ingenias.module.CodeUploader
Initialises the class giving access to diagrams in run-time

D

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
 

E

equals(Object) - Method in class ingenias.module.diff_match_patch.Diff
Is this Diff equivalent to another Diff?

G

getCheckSum(String) - Static method in class ingenias.module.CodeUploader
 
getDescription() - Method in class ingenias.module.CodeUploader
Gets the description of this module
getLastCheckSum(String) - Static method in class ingenias.module.CodeUploader
 
getName() - Method in class ingenias.module.CodeUploader
Gets the name of this module
getVersion() - Method in class ingenias.module.CodeUploader
 

H

hashCode() - Method in class ingenias.module.diff_match_patch.Diff
Create a numeric hash value for a Diff.

I

ingenias.module - package ingenias.module
 
isCodeChanged() - Method in class ingenias.module.CodeUploader
 

L

length1 - Variable in class ingenias.module.diff_match_patch.Patch
 
length2 - Variable in class ingenias.module.diff_match_patch.Patch
 
lineArray - Variable in class ingenias.module.diff_match_patch.LinesToCharsResult
 

M

main(String[]) - Static method in class ingenias.module.CodeUploader
Generates an stats report from a INGENIAS specification file (1st param)
main(String[]) - Static method in class ingenias.module.DifferencesFinder
 
match_alphabet(String) - Method in class ingenias.module.diff_match_patch
Initialise the alphabet for the Bitap algorithm.
match_bitap(String, String, int) - Method in class ingenias.module.diff_match_patch
Locate the best instance of 'pattern' in 'text' near 'loc' using the Bitap algorithm.
Match_Distance - Variable in class ingenias.module.diff_match_patch
How far to search for a match (0 = exact location, 1000+ = broad match).
match_main(String, String, int) - Method in class ingenias.module.diff_match_patch
Locate the best instance of 'pattern' in 'text' near 'loc'.
Match_Threshold - Variable in class ingenias.module.diff_match_patch
At what point is no match declared (0.0 = perfection, 1.0 = very loose).

O

operation - Variable in class ingenias.module.diff_match_patch.Diff
One of: INSERT, DELETE or EQUAL.

P

patch_addContext(diff_match_patch.Patch, String) - Method in class ingenias.module.diff_match_patch
Increase the context until it is unique, but don't let the pattern expand beyond Match_MaxBits.
patch_addPadding(LinkedList<diff_match_patch.Patch>) - Method in class ingenias.module.diff_match_patch
Add some padding on text start and end so that edges can match something.
patch_apply(LinkedList<diff_match_patch.Patch>, String) - Method in class ingenias.module.diff_match_patch
Merge a set of patches onto the text.
patch_deepCopy(LinkedList<diff_match_patch.Patch>) - Method in class ingenias.module.diff_match_patch
Given an array of patches, return another array that is identical.
Patch_DeleteThreshold - Variable in class ingenias.module.diff_match_patch
When deleting a large block of text (over ~64 characters), how close do the contents have to be to match the expected contents.
patch_fromText(String) - Method in class ingenias.module.diff_match_patch
Parse a textual representation of patches and return a List of Patch objects.
patch_make(String, String) - Method in class ingenias.module.diff_match_patch
Compute a list of patches to turn text1 into text2.
patch_make(LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
Compute a list of patches to turn text1 into text2.
patch_make(String, String, LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
Deprecated.
Prefer patch_make(String text1, LinkedList diffs).
patch_make(String, LinkedList<diff_match_patch.Diff>) - Method in class ingenias.module.diff_match_patch
Compute a list of patches to turn text1 into text2.
Patch_Margin - Variable in class ingenias.module.diff_match_patch
Chunk size for context length.
patch_splitMax(LinkedList<diff_match_patch.Patch>) - Method in class ingenias.module.diff_match_patch
Look through the patches and break up any which are longer than the maximum limit of the match algorithm.
patch_toText(List<diff_match_patch.Patch>) - Method in class ingenias.module.diff_match_patch
Take a list of patches and return a textual representation.

R

run() - Method in class ingenias.module.CodeUploader
It opens the different files generated under the ingenias/jade/components folder looking for specific tags.

S

start1 - Variable in class ingenias.module.diff_match_patch.Patch
 
start2 - Variable in class ingenias.module.diff_match_patch.Patch
 
storeChecksum(String, byte[]) - Static method in class ingenias.module.CodeUploader
 

T

text - Variable in class ingenias.module.diff_match_patch.Diff
The text associated with this diff operation.
toString() - Method in class ingenias.module.diff_match_patch.Diff
Display a human-readable version of this Diff.
toString() - Method in class ingenias.module.diff_match_patch.Patch
Emmulate GNU diff's format.

V

valueOf(String) - Static method in enum ingenias.module.diff_match_patch.Operation
Returns the enum constant of this type with the specified name.
values() - Static method in enum ingenias.module.diff_match_patch.Operation
Returns an array containing the constants of this enum type, in the order they are declared.
C D E G H I L M O P R S T V 

Copyright © 2013. All Rights Reserved.