Skip to main content
summaryrefslogtreecommitdiffstats
blob: a21d1b38a52fc089f4131598ca85994df09a9247 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>README Launch Configuration Tab Groups Extension Point</title>
</head>

<body link="#0000FF" vlink="#800080">

<h1 align="center">Launch Configuration Tab Groups</h1>

<p><b><i>Identifier: </i></b>org.eclipse.debug.ui.launchConfigurationTabGroups</p>

<p><b><i>Description: </i></b>This extension point provides a
mechanism for contributing a group of tabs to the launch configuration dialog
for a type of launch configuration.</p>

<p><b><i>Configuration Markup:</i></b> </p>

<pre>
<tt>&nbsp;&nbsp; &lt;!ELEMENT launchConfigurationTabGroup</tt>&gt;
<tt>&nbsp;&nbsp; &lt;!ATTLIST launchConfigurationTabGroup</tt> 
<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>
<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>
<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>
</pre>

<ul>
<li><code>id</code> specifies a unique identifier for this launch configuration
 tab group.</li>
<li><code>type</code> specifies launch configuration type that this tab
 group is applicable to (corresponds to the id of a launch configuration type
 extension).</li>
<li><code>class</code> specifies a fully qualified name of a Java class
 that implements <code>ILanuchConfigurationTabGroup</code>.</li>
</ul>

<p><b><i>Examples:</i></b> </p>

<p>The following is an example of a launch configuration tab group extension point: </p>

<pre>
&lt;extension point="org.eclipse.debug.ui.launchConfigurationTabGroups"&gt;
  &lt;launchConfigurationTabGroup 
     id="com.example.ExampleTabGroup"
     type="com.example.ExampleLaunchConfigurationTypeIdentifier"
     class="com.example.ExampleLaunchConfigurationTabGroupClass"
  &lt;/launchConfigurationTabGroup&gt;
&lt;/extension&gt;
</pre>
<p>In the above example, the contributed tab group will be shown for the launch configuration type
with identifier <code>com.example.ExampleLaunchConfigurationTypeIdentifier</code>.
</p>

<p><b><i>API Information: </i></b>Value of the attribute <b>class</b> must be a fully
qualified name of a Java class that implements the interface <b>
org.eclipse.debug.ui.ILaunchConfigurationTabGroup</b>.
</p>

<p><a href="hglegal.htm"><img src="ngibmcpy.gif" alt="Copyright IBM Corp. 2000, 2001. All Rights Reserved."
border="0" width="195" height="12"></a></p>
</body>
</html>

Back to the top