Jsdoc Completion Processor

This extension point is deprecated, use org.eclipse.wst.jsdt.ui.javaCompletionProposalComputer as a replacement.

Identifier:
org.eclipse.wst.jsdt.ui.javadocCompletionProcessor

Description:
This extension point allows to add a JSdoc completion processor to e.g. offer new JSdoc tags.

Deprecated as of 3.2. Extenders should rather contribute to the org.eclipse.wst.jsdt.ui.javaCompletionProposalComputer extension point, which allows to provide additional proposals not only for jsdoc, but any part of a JavaScript editor.

Configuration Markup:

<!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>


Examples:
The following is an example of a Jsdoc completion processor contribution:


 <extension point="org.eclipse.wst.jsdt.ui.javadocCompletionProcessor">
  <javadocCompletionProcessor
   id="XDocletJavadocProcessor"
   name="XDoclet Javadoc Processor"
   class="com.example.XDocletJavadocProcessor">
  </javadocCompletionProcessor>
 </extension>


Copyright (c) 2007 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/