- Data() - Constructor for class org.vaadin.aceeditor.client.gwt.GwtAceChangeEvent.Data
-
- dcol1 - Variable in class org.vaadin.aceeditor.client.TransportDiff.TransportRangeDiff
-
- dcol2 - Variable in class org.vaadin.aceeditor.client.TransportDiff.TransportRangeDiff
-
- DESCRIPTION_WIDTH - Static variable in class org.vaadin.aceeditor.client.SuggestPopup
-
- descriptionPopup - Variable in class org.vaadin.aceeditor.client.SuggestPopup
-
- descriptionText - Variable in class org.vaadin.aceeditor.client.TransportSuggestion
-
- Diff(diff_match_patch.Operation, String) - Constructor for class name.fraser.neil.plaintext.diff_match_patch.Diff
-
Constructor.
- diff(AceEditor.DiffEvent) - Method in interface org.vaadin.aceeditor.AceEditor.DiffListener
-
- diff(TransportDiff) - Method in interface org.vaadin.aceeditor.client.AceEditorClientRpc
-
- diff(AceDoc, AceDoc) - Static method in class org.vaadin.aceeditor.client.ClientSideDocDiff
-
- diff(String, String) - Static method in class org.vaadin.aceeditor.client.GwtTextDiff
-
- Diff() - Constructor for class org.vaadin.aceeditor.client.GwtTextDiff.Diff
-
- diff(AceMarker, AceMarker) - Static method in class org.vaadin.aceeditor.client.MarkerDiff
-
- diff(Map<String, AceMarker>, Map<String, AceMarker>, String) - Static method in class org.vaadin.aceeditor.client.MarkerSetDiff
-
- diff(AceRange, AceRange) - Static method in class org.vaadin.aceeditor.client.RangeDiff
-
- diff(Set<V>, Set<V>) - Method in class org.vaadin.aceeditor.client.SetDiff.Differ
-
- diff(AceDoc, AceDoc) - Static method in class org.vaadin.aceeditor.ServerSideDocDiff
-
- diff(String, String) - Static method in class org.vaadin.aceeditor.ServerSideDocDiff
-
- diff_bisect(String, String, long) - Method in class name.fraser.neil.plaintext.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 name.fraser.neil.plaintext.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 name.fraser.neil.plaintext.diff_match_patch
-
Reduce the number of edits by eliminating operationally trivial equalities.
- diff_cleanupMerge(LinkedList<diff_match_patch.Diff>) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Reorder and merge like edit sections.
- diff_cleanupSemantic(LinkedList<diff_match_patch.Diff>) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Reduce the number of edits by eliminating semantically trivial equalities.
- diff_cleanupSemanticLossless(LinkedList<diff_match_patch.Diff>) - Method in class name.fraser.neil.plaintext.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 name.fraser.neil.plaintext.diff_match_patch
-
Determine if the suffix of one string is the prefix of another.
- diff_commonPrefix(String, String) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Determine the common prefix of two strings
- diff_commonSuffix(String, String) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Determine the common suffix of two strings
- DIFF_DELETE - Static variable in class org.vaadin.aceeditor.client.GwtTextDiff
-
- Diff_EditCost - Variable in class name.fraser.neil.plaintext.diff_match_patch
-
Cost of an empty edit operation in terms of edit characters.
- diff_editCost - Variable in class org.vaadin.aceeditor.client.AceEditorState
-
- DIFF_EQUAL - Static variable in class org.vaadin.aceeditor.client.GwtTextDiff
-
- diff_fromDelta(String, String) - Method in class name.fraser.neil.plaintext.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 name.fraser.neil.plaintext.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_INSERT - Static variable in class org.vaadin.aceeditor.client.GwtTextDiff
-
- diff_levenshtein(LinkedList<diff_match_patch.Diff>) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Compute the Levenshtein distance; the number of inserted, deleted or
substituted characters.
- diff_linesToChars(String, String) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Split two texts into a list of strings.
- diff_main(String, String) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Find the differences between two texts.
- diff_main(String, String, boolean) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Find the differences between two texts.
- diff_main(String, String) - Method in class org.vaadin.aceeditor.client.DiffMatchPatchJSNI
-
- diff_match_patch - Class in name.fraser.neil.plaintext
-
Class containing the diff, match and patch methods.
- diff_match_patch() - Constructor for class name.fraser.neil.plaintext.diff_match_patch
-
- diff_match_patch.Diff - Class in name.fraser.neil.plaintext
-
Class representing one diff operation.
- diff_match_patch.LinesToCharsResult - Class in name.fraser.neil.plaintext
-
Internal class for returning results from diff_linesToChars().
- diff_match_patch.Operation - Enum in name.fraser.neil.plaintext
-
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 name.fraser.neil.plaintext
-
Class representing one patch operation.
- diff_prettyHtml(LinkedList<diff_match_patch.Diff>) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Convert a Diff list into a pretty HTML report.
- diff_text1(LinkedList<diff_match_patch.Diff>) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Compute and return the source text (all equalities and deletions).
- diff_text2(LinkedList<diff_match_patch.Diff>) - Method in class name.fraser.neil.plaintext.diff_match_patch
-
Compute and return the destination text (all equalities and insertions).
- Diff_Timeout - Variable in class name.fraser.neil.plaintext.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 name.fraser.neil.plaintext.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 name.fraser.neil.plaintext.diff_match_patch
-
loc is a location in text1, compute and return the equivalent location in
text2.
- diff_xIndex(JsArray<GwtTextDiff.Diff>, int) - Method in class org.vaadin.aceeditor.client.DiffMatchPatchJSNI
-
- diff_xIndex_patches(JsArray<GwtTextDiff.Patch>, int) - Method in class org.vaadin.aceeditor.client.DiffMatchPatchJSNI
-
- Differ() - Constructor for class org.vaadin.aceeditor.client.SetDiff.Differ
-
- DiffEvent(AceEditor, ServerSideDocDiff) - Constructor for class org.vaadin.aceeditor.AceEditor.DiffEvent
-
- DiffMatchPatchJSNI - Class in org.vaadin.aceeditor.client
-
- DiffMatchPatchJSNI() - Constructor for class org.vaadin.aceeditor.client.DiffMatchPatchJSNI
-
- diffMethod - Static variable in interface org.vaadin.aceeditor.AceEditor.DiffListener
-
- diffs - Variable in class name.fraser.neil.plaintext.diff_match_patch.Patch
-
- displayText - Variable in class org.vaadin.aceeditor.client.TransportSuggestion
-
- dmp - Static variable in class org.vaadin.aceeditor.client.ClientSideDocDiff
-
- doc - Variable in class org.vaadin.aceeditor.client.AceEditorWidget
-
- down() - Method in class org.vaadin.aceeditor.client.SuggestPopup
-
- drow1 - Variable in class org.vaadin.aceeditor.client.TransportDiff.TransportRangeDiff
-
- drow2 - Variable in class org.vaadin.aceeditor.client.TransportDiff.TransportRangeDiff
-
- valueOf(String) - Static method in enum name.fraser.neil.plaintext.diff_match_patch.Operation
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.AceMode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.AceTheme
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.client.AceAnnotation.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.client.AceEditorConnector.SendCond
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.client.AceEditorConnector.TextChangeEventMode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.client.AceMarker.OnTextChange
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.client.AceMarker.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.client.gwt.GwtAceChangeEvent.Data.Action
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.vaadin.aceeditor.client.gwt.GwtAceKeyboardHandler.Command
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum name.fraser.neil.plaintext.diff_match_patch.Operation
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.AceMode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.AceTheme
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.client.AceAnnotation.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.client.AceEditorConnector.SendCond
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.client.AceEditorConnector.TextChangeEventMode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.client.AceMarker.OnTextChange
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.client.AceMarker.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.client.gwt.GwtAceChangeEvent.Data.Action
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.vaadin.aceeditor.client.gwt.GwtAceKeyboardHandler.Command
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- visibleSuggs - Variable in class org.vaadin.aceeditor.client.SuggestPopup
-