소스 컨테이너 프리젠테이션

org.eclipse.debug.ui.sourceContainerPresentations

3.0

소스 컨테이너 유형에 대한 프리젠테이션 특성을 정의하는 확장점

<!ELEMENT extension (sourceContainerPresentation*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT sourceContainerPresentation EMPTY>

<!ATTLIST sourceContainerPresentation

id              CDATA #REQUIRED

icon            CDATA #IMPLIED

containerTypeID CDATA #REQUIRED

browserClass    CDATA #IMPLIED>

소스 컨테이너 유형에 대한 프리젠테이션 특성을 정의하는 확장점



다음은 소스 컨테이너 프리젠테이션 정의에 관한 예제입니다.
   

<extension point=

"org.eclipse.debug.ui.sourceContainerPresentations"

>

<sourceContainerPresentation browserClass=

"org.eclipse.debug.internal.ui.sourcelookup.browsers.ProjectSourceContainerBrowser"

containerTypeID=

"org.eclipse.debug.core.containerType.project"

icon=

"icons/full/obj16/prj_obj.gif"

id=

"org.eclipse.debug.ui.containerPresentation.project"

>

</sourceContainerPresentation>

</extension>

browserClass 속성 값은 ISourceLocationBrowser 인터페이스를 구현하는 Java 클래스의 완전한 이름이어야 합니다.