blob: 4731c98bc1fd170ae949d7d144c08f93ea1731b0 [file] [log] [blame]
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.debug.ui">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.debug.ui" id="launchGroups" name="Launch Groups"/>
</appInfo>
<documentation>
This extension point provides support for defining a group of launch configurations to be viewed together in the launch configuration dialog, and support a launch history (recent and favorite launches).
</documentation>
</annotation>
<element name="extension">
<complexType>
<sequence>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>
a fully qualified identifier of the target extension point
</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<annotation>
<documentation>
an optional identifier of the extension instance
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>
an optional name of the extension instance
</documentation>
</annotation>
</attribute>
</complexType>
</element>
<element name="launchGroup">
<complexType>
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
specifies a unique identifier for this launch group.
</documentation>
</annotation>
</attribute>
<attribute name="mode" type="string" use="required">
<annotation>
<documentation>
specifies the launch mode associated with this group - i.e. run or debug.
</documentation>
</annotation>
</attribute>
<attribute name="category" type="string" use="optional">
<annotation>
<documentation>
specifies the category of launch configurations in this group. When unspecified, the category is null.
</documentation>
</annotation>
</attribute>
<attribute name="label" type="string" use="required">
<annotation>
<documentation>
specifies a translatable label used to render this group.
</documentation>
</annotation>
</attribute>
<attribute name="image" type="string" use="required">
<annotation>
<documentation>
specifies a plug-in relative path to an image used to render this group in trees, lists, tabs, etc.
</documentation>
<appInfo>
<meta.attribute kind="resource"/>
</appInfo>
</annotation>
</attribute>
<attribute name="bannerImage" type="string" use="required">
<annotation>
<documentation>
specifies a plug-in relative path to an image used to render this group in a wizard or dialog banner area.
</documentation>
<appInfo>
<meta.attribute kind="resource"/>
</appInfo>
</annotation>
</attribute>
<attribute name="public" type="string" use="optional">
<annotation>
<documentation>
specifies whether this launch group is public and should be have a visible launch history tab in the debug preferences. The implied value is true, when not specified.
</documentation>
<appInfo>
<meta.attribute kind="resource"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
<appInfo>
<meta.section type="since"/>
</appInfo>
<documentation>
2.1
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
The following is an example of a launch group extension point:
&lt;p&gt;
&lt;pre&gt;
&lt;extension point="org.eclipse.debug.ui.launchGroups"&gt;
&lt;launchGroup
id="com.example.ExampleLaunchGroupId"
mode="run"
label="Run"
icon="icons\run.gif"
bannerImage="icons\runBanner.gif"&gt;
&lt;/launchGroup&gt;
&lt;/extension&gt;
&lt;/pre&gt;
&lt;/p&gt;
In the above example, the launch group will consist of all launch configurations with no category that support run mode.
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
&lt;a href="hglegal.htm"&gt;&lt;img SRC="ngibmcpy.gif" ALT="Copyright IBM Corp. 2000, 2003. All Rights Reserved." BORDER=0 height=12 width=195&gt;&lt;/a&gt;
</documentation>
</annotation>
</schema>