启动配置类型图像

标识: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.