啟動配置類型影像

識別碼:org.eclipse.debug.ui.launchConfigurationTypeImages

說明:這個延伸點提供建立影像與啟動配置類型關聯性的方法。

配置標記:

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

範例:以下是啟動配置類型影像延伸點的範例:

 <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 and others. All Rights Reserved.