Completion Engine Provider

Identifier:
org.eclipse.jdt.core.completionEngineProvider

Since:
3.38

Description:
This extension point provides the ability to replace the completion engine used for all `Openable`s. The resolver will be instantiated on-demand based on the value of the system property `ICompletionEngineProvider`, which must be set to the id of an implementing extension. This extension point is not intended to be implemented by clients. This extension point is not considered API. This extension point may be modified or removed at any moment.

Configuration Markup:

<!ELEMENT extension (resolver?)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT resolver EMPTY>

<!ATTLIST resolver

class CDATA #REQUIRED

id    CDATA #REQUIRED>

Definition of a completion provider.



Examples:
Example of a declaration of a completionEngineProvider:

<extension
      point="org.eclipse.jdt.core.completionEngineProvider">
   <resolver
         class="org.eclipse.jdt.core.MyCompletionEngineProvider"
         id="org.eclipse.jdt.core.MyCompletionEngineProvider">
   </resolver>
</extension>


Copyright (c) 2025 Red Hat, Inc. and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0