Code Formatters

This extension point is deprecated

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 (c) 2000, 2010 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