Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Plug-in Developer Guide
Previous Page Home Next Page

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

>

  • point - a fully qualified identifier of the target extension point

<!ELEMENT launchConfigurationTypeImage EMPTY>

<!ATTLIST launchConfigurationTypeImage

id           CDATA #REQUIRED

configTypeID IDREF #REQUIRED

icon         CDATA #REQUIRED

>

  • id - specifies a unique identifier for this launch configuration type image.
  • configTypeID - specifies the fully qualified ID of a launch configuration type.(in 2.1, this attribute can also be specified using the "type" attribute, to be consistent with the launchConfigurationTabGroups extension point).
  • icon - specifies the plugin-relative path of an image file.

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.gif"
>
  </launchConfigurationTypeImage>
 </extension>


Copyright (c) 2000, 2005 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire