This extension point supports the <enablement>
element.
The default variable is the containing org.eclipse.jdt.core.IJavaProject
.
Defined variables for <with>
expressions are:
org.eclipse.jdt.core.IJavaProject
; the current project (same as the default variable)
<!ELEMENT extension (javaCompletionProposalComputer | proposalCategory)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #REQUIRED
name CDATA #IMPLIED>
<!ELEMENT javaCompletionProposalComputer (partition)*>
<!ATTLIST javaCompletionProposalComputer
class CDATA #REQUIRED
activate (true | false) "false"
categoryId IDREF "org.eclipse.jdt.ui.defaultProposalCategory"
needsSortingAfterFiltering (true | false) "false"
requiresUIThread (true | false) "true">
A proposal computer contribution. If no partition types are specified, the computer is added to all partition types.
org.eclipse.jdt.ui.text.java.IJavaCompletionProposalComputer
and must have a public 0-argument constructor.<!ELEMENT partition EMPTY>
<!ATTLIST partition
type (__dftl_partition_content_type|__java_singleline_comment|__java_multiline_comment|__java_javadoc|__java_string|__java_character|__java_multiline_string) >
IDocument.DEFAULT_CONTENT_TYPE
and IJavaPartitions
for valid values.<!ELEMENT proposalCategory (enablement?)>
<!ATTLIST proposalCategory
icon CDATA #IMPLIED>
A proposal category contribution defines categories of proposals used to group them in the UI.
<extension point="org.eclipse.jdt.ui.javaCompletionProposalComputer" id="textual_proposals" name="Text Proposals"> <proposalCategory icon="icons/wordcompletions.png"/> </extension> <extension point="org.eclipse.jdt.ui.javaCompletionProposalComputer" id="WordCompletionProposalComputer" name="Word Completion Proposal Computer"> <javaCompletionProposalComputer class="org.eclipse.jdt.internal.ui.text.java.HippieProposalComputer" categoryId="org.eclipse.ui.texteditor.textual_proposals"> <partition type="__java_javadoc"/> </javaCompletionProposalComputer> </extension>
org.eclipse.jdt.ui.text.java.IJavaCompletionProposalComputer
org.eclipse.jdt.internal.ui.text.java.HippieProposalComputer
for an example.
Copyright (c) 2006, 2013 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