Interface CompletionManager
-
- All Known Implementing Classes:
FakeDictionnaryCompletionManager
public interface CompletionManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<CompletionItem>getCompletionItems()Return the list of the matching itemsvoidsetInputParsingManager(InputParsingManager inputParsingManager)Defines the Parsing ManagervoidsetInterpretor(GenericInterpreter interpretor)Defines the interpretor
-
-
-
Method Detail
-
setInputParsingManager
void setInputParsingManager(InputParsingManager inputParsingManager)
Defines the Parsing Manager- Parameters:
inputParsingManager- the parsing manager
-
setInterpretor
void setInterpretor(GenericInterpreter interpretor)
Defines the interpretor- Parameters:
interpretor- the interpretor
-
getCompletionItems
java.util.List<CompletionItem> getCompletionItems()
Return the list of the matching items- Returns:
- the list of the item found
-
-