코드 포맷터

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>