Startkonfigurationstypbilder

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

Beispiele: Das folgende Beispiel zeigt einen Erweiterungspunkt, der ein Image für einen Startkonfigurationstyp bereitstellt.

 <extension point="org.eclipse.debug.ui.launchConfigurationTypeImages">
  <launchConfigurationTypeImage
     id="com.example.FirstLaunchConfigurationTypeImage"
     configTypeID="com.example.FirstLaunchConfigurationType"
     icon="icons/FirstLaunchConfigurationType.gif">
  </launchConfigurationTypeImage>
 </extension>

Copyright (c) 2000, 2003 IBM Corporation und Andere. Alle Rechte vorbehalten.