Skip navigation links
A C D E F G I K L O R S T V W 

A

AceAnnotationType - Enum in org.wisepersist.gwt.ace.client
Enumeration for ACE annotation types.
AceCommand - Enum in org.wisepersist.gwt.ace.client
Enumeration for ACE command types.
AceCommandArgs - Class in org.wisepersist.gwt.ace.client
Ace command's argument could be either string or string-to-string map.
AceCommandArgs(Map<String, String>) - Constructor for class org.wisepersist.gwt.ace.client.AceCommandArgs
Create map argument.
AceCommandArgs(String) - Constructor for class org.wisepersist.gwt.ace.client.AceCommandArgs
Create text argument.
AceCommandDescription - Class in org.wisepersist.gwt.ace.client
Rules describing how editor runs this command (from keyboard, from command line or by AceEditor.execCommand(String) API calls).
AceCommandDescription(String, AceCommandDescription.ExecAction) - Constructor for class org.wisepersist.gwt.ace.client.AceCommandDescription
Define Ace command with command line name and execution action.
AceCommandDescription.ExecAction - Interface in org.wisepersist.gwt.ace.client
Ace command execution action.
AceCommandDescription.KeyBinding - Class in org.wisepersist.gwt.ace.client
Key binding description.
AceCommandDescription.MultiSelectAction - Enum in org.wisepersist.gwt.ace.client
Action defines a way of running commands based on editor text selection.
AceCommandDescription.ScrollIntoView - Enum in org.wisepersist.gwt.ace.client
Ace command scrolling options.
AceCommandLine - Interface in org.wisepersist.gwt.ace.client
Interface exposing command line functions used by editor.
AceCommandLineListener - Interface in org.wisepersist.gwt.ace.client
Listener for command line enter events.
AceCompletion - Class in org.wisepersist.gwt.ace.client
A completion proposed by an AceCompletionProvider.
AceCompletion() - Constructor for class org.wisepersist.gwt.ace.client.AceCompletion
 
AceCompletionCallback - Interface in org.wisepersist.gwt.ace.client
Callback interface for submitting code completion proposals.
AceCompletionProvider - Interface in org.wisepersist.gwt.ace.client
A provider of custom code-completion proposals.
AceCompletionSnippet - Class in org.wisepersist.gwt.ace.client
A completion proposed by an AceCompletionProvider.
AceCompletionSnippet(String, AceCompletionSnippetSegment[], String, String, int) - Constructor for class org.wisepersist.gwt.ace.client.AceCompletionSnippet
Creates a snippet type substitution.
AceCompletionSnippet(String, String, int, String, String) - Constructor for class org.wisepersist.gwt.ace.client.AceCompletionSnippet
Creates a snippet type substitution.
AceCompletionSnippetSegment - Interface in org.wisepersist.gwt.ace.client
A segment of a completion snippet.
AceCompletionSnippetSegmentLiteral - Class in org.wisepersist.gwt.ace.client
A segment of a completion snippet.
AceCompletionSnippetSegmentLiteral(String) - Constructor for class org.wisepersist.gwt.ace.client.AceCompletionSnippetSegmentLiteral
The literal text that makes up part of the snippet segment.
AceCompletionSnippetSegmentTabstopItem - Class in org.wisepersist.gwt.ace.client
A segment of a completion snippet.
AceCompletionSnippetSegmentTabstopItem(String) - Constructor for class org.wisepersist.gwt.ace.client.AceCompletionSnippetSegmentTabstopItem
Text that should fit inside a tabstop, the first tabstop is selected after a substitution, and subsequent tabstops are moved between by pressing the tab button.
AceCompletionValue - Class in org.wisepersist.gwt.ace.client
A completion proposed by an AceCompletionProvider.
AceCompletionValue(String, String, String, int) - Constructor for class org.wisepersist.gwt.ace.client.AceCompletionValue
Constructor.
AceCompletionValue(String, String, String, String, int) - Constructor for class org.wisepersist.gwt.ace.client.AceCompletionValue
Constructor.
AceDefaultCommandLine - Class in org.wisepersist.gwt.ace.client
Default implementation of AceCommandLine wrapping any GWT value box like TextBox or TextArea.
AceDefaultCommandLine(<any>) - Constructor for class org.wisepersist.gwt.ace.client.AceDefaultCommandLine
Create command line wrapper around GWT text box.
AceEditor - Class in org.wisepersist.gwt.ace.client
A GWT widget for the Ajax.org Code Editor (ACE).
AceEditor() - Constructor for class org.wisepersist.gwt.ace.client.AceEditor
Preferred constructor.
AceEditor(String) - Constructor for class org.wisepersist.gwt.ace.client.AceEditor
Constructor with custom element id.
AceEditorCallback - Interface in org.wisepersist.gwt.ace.client
Callback interface for events generated by AceEditor.
AceEditorCursorPosition - Class in org.wisepersist.gwt.ace.client
Represents a cursor position.
AceEditorCursorPosition(int, int) - Constructor for class org.wisepersist.gwt.ace.client.AceEditorCursorPosition
Constructor.
AceEditorMode - Enum in org.wisepersist.gwt.ace.client
Enumeration for ACE editor modes.
AceEditorTheme - Enum in org.wisepersist.gwt.ace.client
Enumeration for ACE editor themes.
AceMarkerType - Enum in org.wisepersist.gwt.ace.client
This enumeration represents the selection/marker types.
AceRange - Class in org.wisepersist.gwt.ace.client
Represents an Ace Range Object.
AceRange() - Constructor for class org.wisepersist.gwt.ace.client.AceRange
 
AceSelection - Class in org.wisepersist.gwt.ace.client
Represents GWT wrapper around an Ace Selection object.
AceSelection(JavaScriptObject) - Constructor for class org.wisepersist.gwt.ace.client.AceSelection
Constructor for AceSelection.
AceSelectionListener - Interface in org.wisepersist.gwt.ace.client
Listener for selection change events.
addAnnotation(int, int, String, AceAnnotationType) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Add an annotation to a the local annotations JsArray<AceAnnotation>, but does not set it on the editor.
addCommand(AceCommandDescription) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Add user defined command.
addCompletionProvider(AceCompletionProvider) - Static method in class org.wisepersist.gwt.ace.client.AceEditor
Add an AceCompletionProvider to provide custom code completions.
addFloatingMarker(AceRange, String, AceMarkerType) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Adds a floating marker into this editor (the marker follows lines changes as insertions, suppressions...).
addMarker(AceRange, String, AceMarkerType, boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Adds a static marker into this editor.
addOnChangeHandler(AceEditorCallback) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Register a handler for change events generated by the editor.
addOnCursorPositionChangeHandler(AceEditorCallback) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Register a handler for cursor position change events generated by the editor.
addSelectionListener(AceSelectionListener) - Method in class org.wisepersist.gwt.ace.client.AceSelection
Register listener for selection change events.

C

clearAnnotations() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Clear any annotations from the editor and reset the local annotations JsArray<AceAnnotation>.
clearSelection() - Method in class org.wisepersist.gwt.ace.client.AceSelection
Clear selection.
create(int, int) - Static method in class org.wisepersist.gwt.ace.client.AceEditorCursorPosition
Static creation method.
create(int, int, int, int) - Static method in class org.wisepersist.gwt.ace.client.AceRange
 

D

destroy() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Cleans up the entire editor.
detach() - Method in class org.wisepersist.gwt.ace.client.AceRange
Detaches both, start and end from this AceRange.
detachEnd() - Method in class org.wisepersist.gwt.ace.client.AceRange
Detaches the end achor from this AceRange.
detachStart() - Method in class org.wisepersist.gwt.ace.client.AceRange
Detaches the start anchor from this AceRange.

E

exec(AceEditor) - Method in interface org.wisepersist.gwt.ace.client.AceCommandDescription.ExecAction
 
execCommand(AceCommand) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Execute a command with no arguments.
execCommand(AceCommand, AceCommandArgs) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Execute a command with arguments (in case args is not null).
execCommand(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Execute a command possibly containing string argument.
execCommand(String, String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Execute a command with arguments (in case args is not null).
execCommand(String, AceCommandArgs) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Execute a command with arguments (in case args is not null).

F

focus() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Causes the editor to gain input focus.
fromJavaScript(JavaScriptObject) - Static method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Create Ace command from javascript object.
fromString(String) - Static method in enum org.wisepersist.gwt.ace.client.AceCommandDescription.MultiSelectAction
 
fromString(String) - Static method in enum org.wisepersist.gwt.ace.client.AceCommandDescription.ScrollIntoView
 

G

getAceCommandGroup() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Give Ace command group name of this command.
getAllPlatforms() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription.KeyBinding
 
getBindKey() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Give key bindings.
getColumn() - Method in class org.wisepersist.gwt.ace.client.AceEditorCursorPosition
 
getCommandDescription(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Construct java wrapper for registered Ace command.
getCursorPosition() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Get the current cursor position.
getExceptMac() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription.KeyBinding
 
getExec() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Give execution action of this command.
getFontSize() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Give font size.
getIndexFromPosition(AceEditorCursorPosition) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Gets the given document position as a zero-based index.
getLine(int) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Get the line of text at the given row number.
getLineCount() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Retrieves the number of lines in the editor.
getMac() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription.KeyBinding
 
getMarkers() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Gets all the displayed markers.
getMultiSelectAction() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Give multi-select action for this command.
getName() - Method in enum org.wisepersist.gwt.ace.client.AceAnnotationType
 
getName() - Method in enum org.wisepersist.gwt.ace.client.AceCommand
 
getName() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Give command line name.
getName() - Method in enum org.wisepersist.gwt.ace.client.AceEditorMode
 
getName() - Method in enum org.wisepersist.gwt.ace.client.AceEditorTheme
 
getName() - Method in enum org.wisepersist.gwt.ace.client.AceMarkerType
 
getPositionFromIndex(int) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Gets a document position from a supplied zero-based index.
getPreparedText(int) - Method in interface org.wisepersist.gwt.ace.client.AceCompletionSnippetSegment
Gets the escaped and prepared textual representation of this snippet segment (backslash and dollar are escaped in general and the dollar is used for certain special tokens).
getPreparedText(int) - Method in class org.wisepersist.gwt.ace.client.AceCompletionSnippetSegmentLiteral
 
getPreparedText(int) - Method in class org.wisepersist.gwt.ace.client.AceCompletionSnippetSegmentTabstopItem
 
getProposals(AceEditor, AceEditorCursorPosition, String, AceCompletionCallback) - Method in interface org.wisepersist.gwt.ace.client.AceCompletionProvider
Call to get code completion proposals, which are delivered to a callback.
getRow() - Method in class org.wisepersist.gwt.ace.client.AceEditorCursorPosition
 
getScrollIntoView() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Give scroll settings for this command.
getSelection() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Prepare a wrapper around Ace Selection object.
getSelectionAnchor() - Method in class org.wisepersist.gwt.ace.client.AceSelection
Give starting position of selection (opposite to position where cursor is located).
getSelectionLead() - Method in class org.wisepersist.gwt.ace.client.AceSelection
Give position of leading end of selection (where cursor is located).
getText() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Get the complete text in the editor as a String.
getValue() - Method in class org.wisepersist.gwt.ace.client.AceCommandArgs
Give inner value.
getValue() - Method in interface org.wisepersist.gwt.ace.client.AceCommandLine
Give current text which command line contains.
getValue() - Method in class org.wisepersist.gwt.ace.client.AceDefaultCommandLine
Give current text which command line contains.
getValue() - Method in class org.wisepersist.gwt.ace.client.AceEditor
 
gotoLine(int) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Go to given line.

I

initializeCommandLine(AceCommandLine) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Bind command line and editor.
insertAtCursor(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Insert given text at the cursor.
invokeAceCallback(JavaScriptObject) - Method in interface org.wisepersist.gwt.ace.client.AceEditorCallback
Callback method.
invokeWithCompletions(AceCompletion[]) - Method in interface org.wisepersist.gwt.ace.client.AceCompletionCallback
Submit code completion proposals.
isBackwards() - Method in class org.wisepersist.gwt.ace.client.AceSelection
Check if selection leading position is located before anchor position.
isEmpty() - Method in class org.wisepersist.gwt.ace.client.AceSelection
Check if selection is empty.
isFocused() - Method in class org.wisepersist.gwt.ace.client.AceEditor
 
isMultiLine() - Method in class org.wisepersist.gwt.ace.client.AceSelection
Check if selection contains several lines.
isPassEvent() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
In case this parameter is true keyboard event will be passed to original listener.
isReadOnly() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Describe does this command change editor document or not.

K

KeyBinding(String) - Constructor for class org.wisepersist.gwt.ace.client.AceCommandDescription.KeyBinding
Constructor for key bindings for all platforms.
KeyBinding(String, String) - Constructor for class org.wisepersist.gwt.ace.client.AceCommandDescription.KeyBinding
Constructor for separate key bindings for Mac and other platforms.

L

listCommands() - Method in class org.wisepersist.gwt.ace.client.AceEditor
List names of all Ace commands.

O

onChangeSelection(AceSelection) - Method in interface org.wisepersist.gwt.ace.client.AceSelectionListener
Emitted when the cursor selection changes.
onCommandEntered(String) - Method in interface org.wisepersist.gwt.ace.client.AceCommandLineListener
Notify subscriber (e.g.
onResize() - Method in class org.wisepersist.gwt.ace.client.AceEditor
 
org.wisepersist.gwt.ace.client - package org.wisepersist.gwt.ace.client
 

R

redisplay() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Call this to force the editor contents to be redisplayed.
removeAllExistingCompleters() - Static method in class org.wisepersist.gwt.ace.client.AceEditor
Removes all existing completers from the langtools

This can be used to disable all completers including local completers, which can be very useful when completers are used on very large files (as the local completer tokenizes every word to put in the selected list).
removeAllMarkers() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Remove all the displayed markers.
removeCommand(AceCommand) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Remove a command from the editor.
removeCommandByName(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Remove commands, that may not be required, from the editor.
removeMarker(int) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Removes the marker with the specified ID.
removeSelectionListener(AceSelectionListener) - Method in class org.wisepersist.gwt.ace.client.AceSelection
Unregister listener for selection change events.

S

select(int, int, int, int) - Method in class org.wisepersist.gwt.ace.client.AceSelection
Select text fragment between two positions.
selectAll() - Method in class org.wisepersist.gwt.ace.client.AceSelection
Select the whole text.
selectLine() - Method in class org.wisepersist.gwt.ace.client.AceSelection
Select line where cursor is located.
setAnnotations() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set any annotations which have been added via addAnnotation on the editor.
setAutocompleteEnabled(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set whether or not autocomplete is enabled.
setCommandLineListener(AceCommandLineListener) - Method in interface org.wisepersist.gwt.ace.client.AceCommandLine
Set listener getting callback from command line component.
setCommandLineListener(AceCommandLineListener) - Method in class org.wisepersist.gwt.ace.client.AceDefaultCommandLine
Set listener getting callback from command line component.
setFontSize(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set font size.
setFontSize(int) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set integer font size.
setHighlightSelectedWord(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set or unset highlighting of currently selected word.
setHScrollBarAlwaysVisible(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set whether or not the horizontal scrollbar is always visible.
setMode(AceEditorMode) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set the mode.
setModeByName(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set the mode by name.
setReadOnly(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set or unset read-only mode.
setShowGutter(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set whether or not the gutter is shown.
setShowPrintMargin(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set or unset the visibility of the print margin.
setTabSize(int) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set tab size.
setText(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set the complete text in the editor from a String.
setTheme(AceEditorTheme) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set the theme.
setThemeByName(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set the theme by name.
setUseSoftTabs(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set whether or not soft tabs should be used.
setUseWorker(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Enable a worker for the current session.
setUseWrapMode(boolean) - Method in class org.wisepersist.gwt.ace.client.AceEditor
Set whether to use wrap mode or not.
setValue(String) - Method in interface org.wisepersist.gwt.ace.client.AceCommandLine
Set text into command line.
setValue(String) - Method in class org.wisepersist.gwt.ace.client.AceDefaultCommandLine
Set text into command line.
setValue(String) - Method in class org.wisepersist.gwt.ace.client.AceEditor
 
startEditor() - Method in class org.wisepersist.gwt.ace.client.AceEditor
Call this method to start the editor.

T

toJavaScript(AceEditor) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Create javascript object from Ace command description.
toJsObject() - Method in class org.wisepersist.gwt.ace.client.AceEditorCursorPosition
Convert to a native Ace JavaScript position object (with integer-valued row and column fields).
toString() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription.KeyBinding
 
toString() - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
 
toString() - Method in class org.wisepersist.gwt.ace.client.AceEditorCursorPosition
 

V

valueOf(String) - Static method in enum org.wisepersist.gwt.ace.client.AceAnnotationType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.wisepersist.gwt.ace.client.AceCommand
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.wisepersist.gwt.ace.client.AceCommandDescription.MultiSelectAction
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.wisepersist.gwt.ace.client.AceCommandDescription.ScrollIntoView
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.wisepersist.gwt.ace.client.AceEditorMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.wisepersist.gwt.ace.client.AceEditorTheme
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.wisepersist.gwt.ace.client.AceMarkerType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.wisepersist.gwt.ace.client.AceAnnotationType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.wisepersist.gwt.ace.client.AceCommand
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.wisepersist.gwt.ace.client.AceCommandDescription.MultiSelectAction
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.wisepersist.gwt.ace.client.AceCommandDescription.ScrollIntoView
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.wisepersist.gwt.ace.client.AceEditorMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.wisepersist.gwt.ace.client.AceEditorTheme
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.wisepersist.gwt.ace.client.AceMarkerType
Returns an array containing the constants of this enum type, in the order they are declared.

W

with(String, String) - Method in class org.wisepersist.gwt.ace.client.AceCommandArgs
Add key-value pair to map.
withAceCommandGroup(String) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Chainable setter method for aceCommandGroup property.
withBindKey(AceCommandDescription.KeyBinding) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Chainable setter method for bindKey property.
withBindKey(String) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Chainable setter method for bindKey property for all platforms.
withBindKey(String, String) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Chainable setter method for bindKey property for Mac and other platforms separately.
withMultiSelectAction(AceCommandDescription.MultiSelectAction) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Chainable setter method for multiSelectAction property.
withPassEvent(boolean) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Chainable setter method for passEvent property.
withReadOnly(boolean) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Chainable setter method for readOnly property.
withScrollIntoView(AceCommandDescription.ScrollIntoView) - Method in class org.wisepersist.gwt.ace.client.AceCommandDescription
Chainable setter method for scrollIntoView property.
A C D E F G I K L O R S T V W 
Skip navigation links