Launch Configuration Type Images

Identifier:
org.eclipse.debug.ui.launchConfigurationTypeImages

Description:
This extension point provides a way to associate an image with a launch configuration type.

Configuration Markup:

<!ELEMENT extension (launchConfigurationTypeImage*)>

<!ATTLIST extension

point CDATA #REQUIRED>


<!ELEMENT launchConfigurationTypeImage EMPTY>

<!ATTLIST launchConfigurationTypeImage

id           CDATA #REQUIRED

configTypeID IDREF #REQUIRED

icon         CDATA #REQUIRED>


Examples:
The following is an example of a launch configuration type image extension point:


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


Copyright (c) 2000, 2005 IBM Corporation and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0