<!ELEMENT extension (breakpoint*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT breakpoint EMPTY>
<!ATTLIST breakpoint
id CDATA #REQUIRED
markerType CDATA #REQUIRED
class CDATA #REQUIRED
name CDATA #IMPLIED>
IBreakpoint
를 구현하는 Java 클래스의 완전한 이름을 지정합니다.
위의 예제에서 지정된 유형의 중단점은 "com.example.BreakpointImpl" 클래스에서 구현됩니다. 이 중단점의 속성을 정의하는 "com.example.ExampleBreakpointMarker"에 대한 연관된 마커 정의가 있습니다.<extension point=
"org.eclipse.debug.core.breakpoints"
>
<breakpoint id=
"com.example.ExampleBreakpoint"
markerType=
"com.example.ExampleBreakpointMarker"
class=
"com.example.ExampleBreakpointImpl"
>
</breakpoint>
</extension>
Copyright (c) 2000, 2005 IBM Corporation and others.
All rights reserved. 본 프로그램 및 본 프로그램에 동봉되는 자료는 본 배포물에 동봉되는 Eclipse Public License v1.0의 조항에 따라 사용해야 하며
웹 사이트(http://www.eclipse.org/legal/epl-v10.html)에서도 관련 사항을 참조할 수 있습니다.