コード・フォーマッター

ID: org.eclipse.jdt.core.codeFormatter

このリリース以降: 2.0

説明: この拡張ポイントによって、クライアントは、新規ソース・コード・フォーマッター・インプリメンテーションを提供できます。

構成マークアップ:

   <!ELEMENT extension (codeFormatter*)>

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

   <!ELEMENT codeFormatter EMPTY>

   <!ATTLIST codeFormatter
     class CDATA #REQUIRED
   >

例: ICodeFormatter のインプリメンテーションの例を以下に示します。
                                                                       
<extension point="org.eclipse.jdt.core.codeFormatter">            
   <codeFormatter                                                                                              
      class="com.example.MyCodeFormatter"/>                           
</extension>

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