Interface ICompletionEngineProvider
public interface ICompletionEngineProvider
Describes a class that can build a completion engine.
-
Method Summary
Modifier and TypeMethodDescriptionnewCompletionEngine(SearchableEnvironment nameEnvironment, CompletionRequestor requestor, Map<String, String> settings, IJavaProject javaProject, WorkingCopyOwner owner, org.eclipse.core.runtime.IProgressMonitor monitor) Returns a new completion engine built with the given parameters.
-
Method Details
-
newCompletionEngine
ICompletionEngine newCompletionEngine(SearchableEnvironment nameEnvironment, CompletionRequestor requestor, Map<String, String> settings, IJavaProject javaProject, WorkingCopyOwner owner, org.eclipse.core.runtime.IProgressMonitor monitor) Returns a new completion engine built with the given parameters.- Parameters:
nameEnvironment- the name environmentrequestor- the search requestorsettings- the settingsjavaProject- the java project that completion will be invoked underowner- the working copy owner of themonitor- the progress monitor- Returns:
- a completion engine built with the given parameters
-