blob: 6ea198adc3dd5640081861d3f28fbd0819f14e78 [file] [log] [blame]
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.debug.core">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.debug.core" id="launchConfigurationTypes" name="Launch Configuration Types"/>
</appInfo>
<documentation>
This extension point provides a configurable mechanism for launching applications.
Each launch configuration type has a name, supports one or more modes (run and/or debug), and specifies a delegate
responsible for the implementation of launching an application.
</documentation>
</annotation>
<element name="extension">
<complexType>
<sequence>
<element ref="launchConfigurationType" minOccurs="0" maxOccurs="unbounded"/>
</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="launchConfigurationType">
<annotation>
<appInfo>
<meta.element labelAttribute="name"/>
</appInfo>
</annotation>
<complexType>
<sequence>
<element ref="fileExtension" minOccurs="1" maxOccurs="unbounded"/>
</sequence>
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
specifies a unique identifier for this launch configuration type.
</documentation>
</annotation>
</attribute>
<attribute name="delegate" type="string" use="required">
<annotation>
<documentation>
specifies the fully qualified name of the Java class that implements &lt;samp&gt;ILaunchConfigurationDelegate&lt;/samp&gt;.
Launch configuration instances of this type will delegate to instances of this class to perform launching.
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.debug.core.model.ILaunchConfigurationDelegate"/>
</appInfo>
</annotation>
</attribute>
<attribute name="modes" type="string" use="required">
<annotation>
<documentation>
specifies a comma-separated list of the modes this type of lauch configuration supports - "run" and/or "debug".
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string" use="required">
<annotation>
<documentation>
specifies a human-readable name for this type of launch configuration.
</documentation>
</annotation>
</attribute>
<attribute name="public" type="boolean">
<annotation>
<documentation>
specifies whether this launch configuration type is accessible by users. Defaults to true if not specified.
</documentation>
</annotation>
</attribute>
<attribute name="category" type="string">
<annotation>
<documentation>
an optional attribute that specifies this launch configuration type's category. The default value is unspecified (null). Categories are client defined. This attribute was added in the 2.1 release
</documentation>
</annotation>
</attribute>
</complexType>
</element>
<element name="fileExtension">
<complexType>
<attribute name="extension" type="string" use="required">
<annotation>
<documentation>
specifies a file extension that this launch configuration type
can be used for.
</documentation>
</annotation>
</attribute>
<attribute name="default" type="boolean">
<annotation>
<documentation>
specifies whether this launch configuration type should be the default launch configuration type for the specified file extension. Defaults to false if not specified.
</documentation>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
The following is an example of a launch configuration type extension point:
&lt;p&gt;
&lt;pre&gt;
&lt;extension point="org.eclipse.debug.core.launchConfigurationTypes"&gt;
&lt;launchConfigurationType
id="com.example.ExampleIdentifier"
delegate="com.example.ExampleLaunchConfigurationDelegate"
modes="run,debug"
name="Example Application"&gt;
&lt;fileExtension extension="txt" default="true"/&gt;
&lt;fileExtension extension="gif" default="false"/&gt;
&lt;/launchConfigurationType&gt;
&lt;/extension&gt;
&lt;/pre&gt;
&lt;/p&gt;
In the example above, the specified type of launch configuration supports both run and debug modes.
The launch configuration is applicable to .txt and .gif files, and is the default launch configuration for .txt files.
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
Value of the attribute &lt;b&gt;delegate&lt;/b&gt; must be a fully qualified name of a Java class that implements the interface &lt;b&gt;org.eclipse.debug.core.model.ILaunchConfigurationDelegate&lt;/b&gt;.
</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>