- All Known Implementing Classes:
AutoCompletableTextEditorSupport
,JEditTextEditor
,TextEditorSupport
public interface AutoCompletable
Interface that define the required methods for a text panel to be
able to auto complete the text in a document. (The panel is managing
the document completion)
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Call the auto completion Likely useless with the autocmpletor implementationgetAlreadyEnteredText
(CompletionProvider provider) Get the String to be autocompleted Likely useless with the autocmpletor implementationvoid
Add an autocompetor to the panelvoid
remove an autocompetor
-
Method Details
-
autocomplete
void autocomplete()Call the auto completion Likely useless with the autocmpletor implementation -
getAlreadyEnteredText
Get the String to be autocompleted Likely useless with the autocmpletor implementation -
installAutoCompletor
Add an autocompetor to the panel -
uninstallAutoCompletor
void uninstallAutoCompletor()remove an autocompetor
-