실행 모드

org.eclipse.debug.core.launchModes

3.0

이 확장점에서는 실행 모드를 디버그 플랫폼에 제공하는 메커니즘을 제공합니다. 디버그 플랫폼은 "run", "debug" 및 "profile"에 대한 모드를 정의합니다.

<!ELEMENT extension (launchMode*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT launchMode EMPTY>

<!ATTLIST launchMode

mode  CDATA #REQUIRED

label CDATA #REQUIRED>


다음은 실행 위임 확장점에 관한 예제입니다.

 

<extension point=

"org.eclipse.debug.core.launchModes"

>

<launchMode mode=

"profile"

label=

"Profile"

>

</launchMode>

</extension>

위의 예제에서는 프로파일 실행 모드가 제공됩니다.