Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-03-13 14:40:25 +0000
committerDarin Wright2002-03-13 14:40:25 +0000
commitf94da9c58408760fde69de84b66b9a6a2a644778 (patch)
treee64fc9a527987c87c5358c558f91d89e8b36f464 /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java
parenteba0509e6e86222b2e2255d08fe6fd44cad327a3 (diff)
downloadeclipse.platform.debug-f94da9c58408760fde69de84b66b9a6a2a644778.tar.gz
eclipse.platform.debug-f94da9c58408760fde69de84b66b9a6a2a644778.tar.xz
eclipse.platform.debug-f94da9c58408760fde69de84b66b9a6a2a644778.zip
launch tab modes
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java
index 618bc1887..099376798 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java
@@ -49,6 +49,7 @@ import org.eclipse.swt.widgets.Control;
* type="com.example.ExampleLaunchConfigurationTypeIdentifier"
* class="com.example.ExampleLaunchConfigurationTabClass"
* name="Example Tab Page"
+ * mode="debug"
* </launchConfigurationType>
* </extension>
* </pre>
@@ -65,6 +66,9 @@ import org.eclipse.swt.widgets.Control;
* <li><code>name</code> specifies a human readable name for this
* launch configuration tab that will appear as the title for this
* tab, in the tab page.</li>
+ * <li><code>mode</code> optionally specifies the mode for which this tab should
+ * be displayed - one of "run" or "debug". This tab is displayed for
+ * both modes if unspecified.</li>
* </ul>
* </p>
* <p>

Back to the top