This extension point allows to add a Javadoc completion processor to e.g. offer new Javadoc tags. <p> Deprecated as of 3.2. Extenders should rather contribute to the <tt>descent.ui.javaCompletionProposalComputer</tt> extension point, which allows to provide additional proposals not only for javadoc, but any part of a Java editor. </p> a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance Unique identifier for the Javadoc completion processor. Localized name of the Javadoc completion processor. The name of the class that implements this Javadoc completion processor. The class must be public and implement <samp>descent.ui.text.java.IJavadocCompletionProcessor</samp> with a public 0-argument constructor. The following is an example of a Javadoc completion processor contribution: <p> <pre> <extension point="descent.ui.javadocCompletionProcessor"> <javadocCompletionProcessor id="XDocletJavadocProcessor" name="XDoclet Javadoc Processor" class="com.example.XDocletJavadocProcessor"> </javadocCompletionProcessor> </extension> </pre> </p> Copyright (c) 2001, 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>