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 itemsvoid
setInputParsingManager(InputParsingManager inputParsingManager)
Defines the Parsing Managervoid
setInterpretor(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
-
-