This extension point allows to contribute sorters that may modify the completion proposal ordering in the Java editor. The fully qualified identifier of the target extension point. The identifier of the extension instance, unique within the declaring plug-in (the plug-in's identifier will be prepended to form a platform-wide unique id). The optional name of the extension instance. A proposal sorter contribution. The unique identifier of the sorter. The label of the sorter as shown in the preferences. It should be a continuation of the phrase "Sort proposals...", for example "by relevance". The name of the class that implements the contributed sorter. The class must be a public subclass of <samp>descent.ui.text.java.AbstractProposalSorter</samp> and must have a public 0-argument constructor. 3.2 <p> <pre> <extension point="descent.ui.javaCompletionProposalSorters"> <proposalSorter id="descent.ui.RelevanceSorter" name="by relevance" class="descent.internal.ui.text.java.RelevanceSorter"/> </extension> </pre> </p> See <code>AbstractProposalSorter</code>. <code>descent.internal.ui.text.java.RelevanceSorter</code> and <code>descent.internal.ui.text.java.AlphabeticSorter</code> implement the two default sort behaviors. Copyright (c) 2006 IBM Corporation and others.<br> All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>