Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c1a8e694306d97f6309033e86aae922cc78f6554 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HEAD><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</HEAD>
<HTML>
<BODY>
<H1><CENTER>Launch Configuration Type Images</CENTER></H1>
<b><i>Identifier: </i></b>org.eclipse.debug.ui.launchConfigurationTypeImages<p>
<b><i>Description: </i></b>This extension point provides a way to associate an image with a launch configuration type.<p><b><i>Configuration Markup:</i></b><p>
<p><samp><font color="#800000">&nbsp;&nbsp; &lt;!ELEMENT extension (launchConfigurationTypeImage*)&gt;</font></samp>
<br><br><samp><font color="#800000">&nbsp;&nbsp; &lt;!ATTLIST extension</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;point&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;id&nbsp;&nbsp;&nbsp;&nbsp;CDATA #IMPLIED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name&nbsp;&nbsp;CDATA #IMPLIED</samp>
<br><samp>&nbsp;&nbsp; &gt;</font></samp>
<ul>
<li><b>point</b> - a fully qualified identifier of the target extension point</li>
<li><b>id</b> - an optional identifier of the extension instance</li>
<li><b>name</b> - an optional name of the extension instance</li>
</ul>
<p><samp><font color="#800000">&nbsp;&nbsp; &lt;!ELEMENT launchConfigurationTypeImage EMPTY&gt;</font></samp>
<br><br><samp><font color="#800000">&nbsp;&nbsp; &lt;!ATTLIST launchConfigurationTypeImage</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;configTypeID&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;icon&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CDATA #REQUIRED</samp>
<br><samp>&nbsp;&nbsp; &gt;</font></samp>
<ul>
<li><b>id</b> - specifies a unique identifier for this launch configuration type image.</li>
<li><b>configTypeID</b> - 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).</li>
<li><b>icon</b> - specifies the plugin-relative path of an image file.</li>
</ul>
<b><i>Examples: </i></b>The following is an example of a launch configuration type image extension point:

<p>
<pre>
 <font color="#000080">&lt;extension point=<font color="#008000">&quot;org.eclipse.debug.ui.launchConfigurationTypeImages&quot;</font>&gt;</font>
  <font color="#000080">&lt;launchConfigurationTypeImage
     id=<font color="#008000">&quot;com.example.FirstLaunchConfigurationTypeImage&quot;</font>
     configTypeID=<font color="#008000">&quot;com.example.FirstLaunchConfigurationType&quot;</font>
     icon=<font color="#008000">&quot;icons/FirstLaunchConfigurationType.gif&quot;</font>&gt;</font>
  <font color="#000080">&lt;/launchConfigurationTypeImage&gt;</font>
 <font color="#000080">&lt;/extension&gt;</font>
</pre>
</p><p>
<font size="-1" color="#336699">
<a href="hglegal.htm"><img SRC="ngibmcpy.gif" ALT="Copyright IBM Corp. 2000, 2003.  All Rights Reserved." BORDER=0 height=12 width=195></a><p>
</font>
</BODY>
</HTML>

Back to the top