啟動配置類型影像

org.eclipse.debug.ui.launchConfigurationTypeImages

這個延伸點提供一種將影像與啟動配置類型相關聯的方法。

<!ELEMENT extension (launchConfigurationTypeImage*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT launchConfigurationTypeImage EMPTY>

<!ATTLIST launchConfigurationTypeImage

id           CDATA #REQUIRED

configTypeID CDATA #REQUIRED

icon         CDATA #REQUIRED>


下列是啟動配置類型影像延伸點的範例:

 

<extension point=

"org.eclipse.debug.ui.launchConfigurationTypeImages"

>

<launchConfigurationTypeImage id=

"com.example.FirstLaunchConfigurationTypeImage"

configTypeID=

"com.example.FirstLaunchConfigurationType"

icon=

"icons/FirstLaunchConfigurationType.gif"

>

</launchConfigurationTypeImage>

</extension>