識別碼:org.eclipse.debug.ui.launchConfigurationTypeImages
說明:這個延伸點提供建立影像與啟動配置類型關聯性的方法。
配置標記:
<!ELEMENT launchConfigurationTypeImage> <!ATTLIST launchConfigurationTypeImage
id CDATA #REQUIRED
configTypeID CDATA #REQUIRED
icon CDATA #REQUIRED>
ID
指定專屬的識別碼給這個啟動配置類型影像。configTypeID
指定啟動配置類型的完整 ID。icon
指定影像檔的外掛程式相關路徑。範例:
下列是啟動配置類型影像延伸點的範例:
<extension point="org.eclipse.debug.ui.launchConfigurationTypeImages"> <launchConfigurationTypeImage id="com.example.FirstLaunchConfigurationTypeImage" configTypeID="com.example.FirstLaunchConfigurationType" icon="icons/FirstLaunchConfigurationType.gif"> </launchConfigurationTypeImage> </extension>