Code Formatters

Identifier: org.eclipse.jdt.core.codeFormatter

Since: 2.0

Description: This extension point allows clients to contribute new source code formatter implementations.

Configuration Markup:

   <!ELEMENT extension (codeFormatter*)>

   <!ATTLIST extension
     point CDATA #REQUIRED
     id    CDATA #IMPLIED
     name  CDATA #IMPLIED
   >

   <!ELEMENT codeFormatter EMPTY>

   <!ATTLIST codeFormatter
     class CDATA #REQUIRED
   >

Examples: Example of an implementation of ICodeFormatter:
                                                                       
<extension point="org.eclipse.jdt.core.codeFormatter">            
   <codeFormatter                                                                                              
      class="com.example.MyCodeFormatter"/>                           
</extension>

Copyright IBM Corp. 2000, 2003. All Rights Reserved.