Deprecated as of 3.2. Extenders should rather contribute to the org.eclipse.jdt.ui.javaCompletionProposalComputer extension point, which allows to provide additional proposals not only for javadoc, but any part of a Java editor.
<!ELEMENT extension (javadocCompletionProcessor+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT javadocCompletionProcessor EMPTY>
<!ATTLIST javadocCompletionProcessor
id CDATA #REQUIRED
name CDATA #IMPLIED
class CDATA #IMPLIED>
org.eclipse.jdt.ui.text.java.IJavadocCompletionProcessor
with a public 0-argument constructor.
<extension point="org.eclipse.jdt.ui.javadocCompletionProcessor"> <javadocCompletionProcessor id="XDocletJavadocProcessor" name="XDoclet Javadoc Processor" class="com.example.XDocletJavadocProcessor"> </javadocCompletionProcessor> </extension>
Copyright (c) 2001, 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