Images für Startkonfigurationstypen

org.eclipse.debug.ui.launchConfigurationTypeImages

Dieser Erweiterungspunkt stellt eine Methode zur Verfügung, mit der einem Startkonfigurationstyp ein Bild zugeordnet werden kann.

<!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>


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>