blob: 720e091dbfd553191d78ac792d1b748ac4e6f24c [file] [log] [blame]
<!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>ILaunchConfigurationTabGroup</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"&gt;
&lt;/launchConfigurationTabGroup&gt;
&lt;/extension&gt;
</pre>
<p>In the above example, the contributed tab group will be shown in the launch configuration dialog 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>