Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-03-21 22:24:29 +0000
committerDarin Wright2002-03-21 22:24:29 +0000
commitd5e279788dcf344ba90882c20dd8668d536ec7c6 (patch)
treec80b1a93d17d9c5e086525f10b41624f83ff3558 /org.eclipse.debug.ui/doc
parenta25c52e29ce59c618299c71b9b5f13013f8186df (diff)
downloadeclipse.platform.debug-d5e279788dcf344ba90882c20dd8668d536ec7c6.tar.gz
eclipse.platform.debug-d5e279788dcf344ba90882c20dd8668d536ec7c6.tar.xz
eclipse.platform.debug-d5e279788dcf344ba90882c20dd8668d536ec7c6.zip
bug 11330
Diffstat (limited to 'org.eclipse.debug.ui/doc')
-rw-r--r--org.eclipse.debug.ui/doc/org_eclipse_debug_ui.html1
-rw-r--r--org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabGroups.html64
2 files changed, 65 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/doc/org_eclipse_debug_ui.html b/org.eclipse.debug.ui/doc/org_eclipse_debug_ui.html
index 6ebf22dd3..44336afb5 100644
--- a/org.eclipse.debug.ui/doc/org_eclipse_debug_ui.html
+++ b/org.eclipse.debug.ui/doc/org_eclipse_debug_ui.html
@@ -24,6 +24,7 @@ stepping, terminating, etc. <br>
<ul>
<li><a href="org_eclipse_debug_ui_debugModelPresentations.html">org.eclipse.debug.ui.debugModelPresentations</a></li>
+ <li><a href="org_eclipse_debug_ui_launchConfigurationTabGroups.html">org.eclipse.debug.ui.launchConfigurationTabGroups</a></li>
<li><a href="org_eclipse_debug_ui_launchConfigurationTabs.html">org.eclipse.debug.ui.launchConfigurationTabs</a></li>
<li><a href="org_eclipse_debug_ui_launchConfigurationTypeImages.html">org.eclipse.debug.ui.launchConfigurationTypeImages</a></li>
</ul>
diff --git a/org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabGroups.html b/org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabGroups.html
new file mode 100644
index 000000000..a43d839ba
--- /dev/null
+++ b/org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabGroups.html
@@ -0,0 +1,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