Java Completion Proposal Sorters

Identifier:
org.eclipse.jdt.ui.javaCompletionProposalSorters

Since:
3.2

Description:
This extension point allows to contribute sorters that may modify the completion proposal ordering in the Java editor.

Configuration Markup:

<!ELEMENT extension (proposalSorter+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT proposalSorter EMPTY>

<!ATTLIST proposalSorter

id               CDATA #REQUIRED

name             CDATA #IMPLIED

class            CDATA #REQUIRED

requiresUIThread (true | false) "true">

A proposal sorter contribution.



Examples:


<extension
 point="org.eclipse.jdt.ui.javaCompletionProposalSorters">
 <proposalSorter
  id="org.eclipse.jdt.ui.RelevanceSorter"
  name="by relevance"
  class="org.eclipse.jdt.internal.ui.text.java.RelevanceSorter"/>
</extension>

API Information:
See AbstractProposalSorter.

Supplied Implementation:
org.eclipse.jdt.internal.ui.text.java.RelevanceSorter and org.eclipse.jdt.internal.ui.text.java.AlphabeticSorter implement the two default sort behaviors.


Copyright (c) 2006 IBM Corporation 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