Bilder for oppstartskonfigurasjonstyper

org.eclipse.debug.ui.launchConfigurationTypeImages

Dette utvidelsespunktet har en metode for å knytte et bilde til en oppstartskonfigurasjonstype.

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


Nedenfor finner du et eksempel på et utvidelsespunkt for et bilde for en oppstartskonfigurasjonstype:

 

<extension point=

"org.eclipse.debug.ui.launchConfigurationTypeImages"

>

<launchConfigurationTypeImage id=

"com.example.FirstLaunchConfigurationTypeImage"

configTypeID=

"com.example.FirstLaunchConfigurationType"

icon=

"icons/FirstLaunchConfigurationType.gif"

>

</launchConfigurationTypeImage>

</extension>