Kennung: org.eclipse.debug.ui.launchConfigurationTypeImages
Beschreibung: Dieser Erweiterungspunkt stellt eine Methode zur Verfügung, mit der einem Startkonfigurationstyp ein Bild zugeordnet werden kann.
Konfigurationsbefehle:
<!ELEMENT launchConfigurationTypeImage> <!ATTLIST launchConfigurationTypeImage
id CDATA #REQUIRED
configTypeID CDATA #REQUIRED
icon CDATA #REQUIRED>
id: Gibt eine eindeutige Kennung für dieses Startkonfigurationstypbild an.configTypeID: Gibt die vollständig qualifizierte Kennung eines Startkonfigurationstyps an.icon: Gibt den relativen Plug-in-Pfad für eine Bilddatei an.Beispiele:
Beispiel für einen Erweiterungspunkt für Startkonfigurationstypbilder:
<extension point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
id="com.example.FirstLaunchConfigurationTypeImage"
configTypeID="com.example.FirstLaunchConfigurationType"
icon="icons/FirstLaunchConfigurationType.gif">
</launchConfigurationTypeImage>
</extension>