Package | Description |
---|---|
com.fgm.visibilityScriptingServer.Autocomplete | |
com.fgm.visibilityScriptingServer.Autocomplete.languages |
Modifier and Type | Method and Description |
---|---|
CompletionResult |
ICompletionService.getProposals(java.lang.String document,
java.lang.String curSelection)
Gets the proposals.
|
CompletionResult |
AutoCompleteService.getProposals(java.lang.String language,
java.lang.String document,
java.lang.String curSelection)
Gets the proposals.
|
Modifier and Type | Method and Description |
---|---|
CompletionResult |
PythonLanguageService.getProposals(java.lang.String document,
java.lang.String curSelection) |
CompletionResult |
DummyLanguageService.getProposals(java.lang.String document,
java.lang.String curSelection) |
Modifier and Type | Method and Description |
---|---|
private boolean |
PythonLanguageService.isSpecialCase(java.lang.String declaraction,
CompletionResult result)
Determines if the variable declaration is a special case
existing in the specialCases HashMap and, if so, appends the
List of CompletionPropals to the result making it ready to
return.
|
private java.util.ArrayList<CompletionProposal> |
PythonLanguageService.parseScriptOutput(ScriptResultObject sro,
CompletionResult result)
Internal method for parsing the output of the jython script.
|
private java.lang.String |
PythonLanguageService.prepareScript(java.lang.String document,
java.lang.String selection,
CompletionResult result)
Internal method used to prepare the jython script which returns introspection
information about the module, class, list, dictionary, or string object.
|