1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
<?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="launchers" name="Launcher"/>
</appInfo>
<documentation>
This extension point has been replaced by the launchConfigurationTypes extension point. Extensions of this type are obsolete as of release 2.0 and are ignored. This extension point was used to contribute launchers.
A launcher was responsible for initiating a debug session
or running a program and registering the result with the
launch manager.
</documentation>
</annotation>
<element name="extension">
<annotation>
<appInfo>
<meta.element deprecated="true"/>
</appInfo>
</annotation>
<complexType>
<sequence>
<element ref="launcher" 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="launcher">
<annotation>
<appInfo>
<meta.element labelAttribute="label" icon="icon"/>
</appInfo>
</annotation>
<complexType>
<attribute name="id" type="string" use="required">
<annotation>
<documentation>
a unique identifier that can be used to reference
this launcher.
</documentation>
</annotation>
</attribute>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
fully qualified name of the Java class that implements
<code>org.eclipse.debug.core.model.ILauncherDelegate</code>.
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.debug.core.model.ILauncherDelegate"/>
</appInfo>
</annotation>
</attribute>
<attribute name="modes" type="string" use="required">
<annotation>
<documentation>
A comma separated list of modes this launcher supports.
The two supported modes are "run" and "debug" -
as defined in <code>org.eclipse.debug.core.ILaunchManager</code>.
A launcher may be capable of launching in one or both modes.
</documentation>
</annotation>
</attribute>
<attribute name="label" type="string" use="required">
<annotation>
<documentation>
a label to use for the launcher. This attribute is used by the debug UI.
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
<attribute name="wizard" type="string">
<annotation>
<documentation>
fully qualified name of the class that implements
<code>org.eclipse.debug.ui.ILaunchWizard</code>.
This attribute is used by the debug UI. A launcher
may contribute a wizard that allows users to configure
and launch specific attributes.
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.jface.wizard.Wizard:org.eclipse.debug.ui.ILaunchWizard"/>
</appInfo>
</annotation>
</attribute>
<attribute name="public" type="boolean">
<annotation>
<documentation>
whether a launcher is publically visible in the debug UI.
If <code>true</code>, the launcher will be available from the
debug UI - the launcher will appear as a choice
for a default launcher, launches created by this
launcher will appear in the launch history, and the
launcher will be available from the drop-down run/debug
toolbar actions.
</documentation>
</annotation>
</attribute>
<attribute name="description" type="string">
<annotation>
<documentation>
a description of the launcher. Currently only used
if the wizard attribute is specified.
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
<attribute name="perspective" type="string">
<annotation>
<documentation>
the identifier of the perspective that will be switched
to on a successful launch. Default value is the
identifier for the debug perspective. This attribute
is used by the debug UI.
</documentation>
</annotation>
</attribute>
<attribute name="icon" type="string">
<annotation>
<documentation>
a relative path of an icon that will represent the launcher
in the UI if specified.
</documentation>
<appInfo>
<meta.attribute kind="resource"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
The following is an example of a launcher extension point:
<p>
<pre>
<extension
point = "org.eclipse.debug.core.launchers">
<launcher
id = "com.example.ExampleLauncher"
class = "com.example.launchers.ExampleLauncher"
modes = "run, debug"
label = "Example Launcher"
wizard = "com.example.launchers.ui.ExampleLaunchWizard"
public = "true"
description = "Launches example programs"
perspective= "com.example.JavaPerspective">
</launcher>
</extension>
</pre>
</p>
In the example above, the specified launcher supports
both run and debug modes. Following a successful launch,
the debug UI will change to the Java perspective. When
the debug UI presents the user with a list of launchers
to choose from, "Example Launcher" will appear as one of
the choices with the "Launches example programs" as the
description, and the wizard specified by
<samp>com.example.launchers.ui.ExampleLaunchWizard</samp>
will be used to configure any launch specific details.
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
Value of the attribute <samp>class</samp> must be a fully
qualified class name of a Java class that implements
the interface
<samp>org.eclipse.debug.core.ILauncherDelegate</samp>.
Value of the attribute <samp>wizard</samp> must be a
fully qualified class name of a Java class that
implements <samp>org.eclipse.debug.ui.ILaunchWizard</samp>.
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="implementation"/>
</appInfo>
<documentation>
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
Copyright (c) 2000, 2011 IBM Corporation and others.<br>
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0 which
accompanies this distribution, and is available at
<a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-v20.html</a>/
SPDX-License-Identifier: EPL-2.0
</documentation>
</annotation>
</schema>
|