Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-03-09 01:26:56 +0000
committerDarin Wright2002-03-09 01:26:56 +0000
commit58d11eda4aa32b493106861b1b1bf3d67e015501 (patch)
tree5ac8a5e74e4c1e94075e0d6abf382169b90f3506 /org.eclipse.debug.ui/doc
parent3a84dad52ed957b53ee895c426ed12bbb89c48df (diff)
downloadeclipse.platform.debug-58d11eda4aa32b493106861b1b1bf3d67e015501.tar.gz
eclipse.platform.debug-58d11eda4aa32b493106861b1b1bf3d67e015501.tar.xz
eclipse.platform.debug-58d11eda4aa32b493106861b1b1bf3d67e015501.zip
bug 10439
Diffstat (limited to 'org.eclipse.debug.ui/doc')
-rw-r--r--org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabs.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabs.html b/org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabs.html
index 974930dcd..bd50df18d 100644
--- a/org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabs.html
+++ b/org.eclipse.debug.ui/doc/org_eclipse_debug_ui_launchConfigurationTabs.html
@@ -30,8 +30,8 @@ for certain launch configuration types.</p>
<ul>
<li><code>id</code> specifies a unique identifier for this launch configuration
tab.</li>
- <li><code>type</code> specifies a comma separated list of the fully qualified IDs of the
- launch configuration types this tab will be shown for. Defaults to all launch configuration
+ <li><code>type</code> specifies the fully qualified identifier of the
+ launch configuration type this tab will be shown for. Defaults to all launch configuration
types if not specified.</li>
<li><code>class</code> specifies the fully qualified name of the Java class that implements
<code>ILaunchConfigurationTab</code>.</li>
@@ -46,15 +46,15 @@ for certain launch configuration types.</p>
&lt;extension point="org.eclipse.debug.core.launchConfigurationTabs"&gt;
&lt;launchConfigurationTab
id="com.example.ExampleTabIdentifier"
- type="com.example.FirstLaunchConfigurationType,com.example.SecondLaunchConfigurationType"
+ type="com.example.SomeLaunchConfigurationType"
class="com.example.ExampleLaunchConfigurationTab"
name="Example Tab"&gt;
&lt;/launchConfigurationTab&gt;
&lt;/extension&gt;
</pre>
-<p>In the above example, the contributed tab will be shown for the two launch configuration types
-with IDs <code>com.example.FirstLaunchConfigurationTab</code> and <code>com.example.SecondLaunchConfigurationTab</code>.
+<p>In the above example, the contributed tab will be shown for the launch configuration type
+with identifier <code>com.example.SomeLaunchConfigurationType</code>.
</p>
<p><b><i>API Information: </i></b>Value of the attribute <b>class</b> must be a fully

Back to the top