Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2006-11-14 21:28:40 +0000
committerMichael Rennie2006-11-14 21:28:40 +0000
commitd93b9912257fc70e27a39ca39257125d63040b74 (patch)
treecc6e0354539e0c45974f544cfdf0611c069a30ac /org.eclipse.debug.ui/schema
parent7e352a433e6b09104e58ecad4ea37f7a08a8d4a7 (diff)
downloadeclipse.platform.debug-d93b9912257fc70e27a39ca39257125d63040b74.tar.gz
eclipse.platform.debug-d93b9912257fc70e27a39ca39257125d63040b74.tar.xz
eclipse.platform.debug-d93b9912257fc70e27a39ca39257125d63040b74.zip
Bug 157059
[launching] extensible launch options
Diffstat (limited to 'org.eclipse.debug.ui/schema')
-rw-r--r--org.eclipse.debug.ui/schema/launchConfigurationTabs.exsd22
1 files changed, 20 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/schema/launchConfigurationTabs.exsd b/org.eclipse.debug.ui/schema/launchConfigurationTabs.exsd
index 35acd19f8..4baf86d7a 100644
--- a/org.eclipse.debug.ui/schema/launchConfigurationTabs.exsd
+++ b/org.eclipse.debug.ui/schema/launchConfigurationTabs.exsd
@@ -38,8 +38,9 @@ without consulting with the Platform/Debug team.</p>
</documentation>
</annotation>
<complexType>
- <sequence minOccurs="0" maxOccurs="1">
- <element ref="placement"/>
+ <sequence>
+ <element ref="placement" minOccurs="0" maxOccurs="1"/>
+ <element ref="associatedDelegate" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="id" type="string" use="required">
<annotation>
@@ -92,6 +93,23 @@ without consulting with the Platform/Debug team.&lt;/p&gt;
</complexType>
</element>
+ <element name="associatedDelegate">
+ <annotation>
+ <documentation>
+ This attribute is used to map a contrinbuted tab to one or more launch delegates. This allows tabs to be filtered from the launch dialog based on what launch delegate/tooling is selected as the current default.
+ </documentation>
+ </annotation>
+ <complexType>
+ <attribute name="delegate" type="string" use="required">
+ <annotation>
+ <documentation>
+ The id of the &lt;code&gt;launchDelegate&lt;/code&gt; that this tab is associated with. The association allows the tab to be filtered based on the modesets supported by the delegates. since 3.3 EXPERIMENTAL
+ </documentation>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
<annotation>
<appInfo>
<meta.section type="since"/>

Back to the top