This extension point provides a mechanism for contributing a launch delegate to an existing launch configuration type for one or more launch modes. Since launch modes are extensible, it may be neccessary to contribute additional launch delegates to an existing launch configuration type. Each launch delegate is contributed for a specific launch configuration type. A launch delegate supports one or more launch modes, and specifies a delegate responsible for the implementation of launching. a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance specifies a unique identifier for this launch delegate. A human readable name for this delegate. This attribute was added in the 3.3. release. <p> <strong>EXPERIMENTAL</strong>. This attribute has been added as part of a work in progress. There is no guarantee that this API will remain unchanged during the 3.3 release cycle. Please do not use this API without consulting with the Platform/Debug team. </p> specifies the fully qualified name of the Java class that implements <code>ILaunchConfigurationDelegate</code>. Launch configuration instances of this delegate's type will delegate to instances of this class to perform launching. A comma-separated list of the launch modes this lauch delegate supports. identifier of an existing launch configuration type that this launch delegate is capable of launching. The unique identifier of a sourcePathComputer extension that is used to compute a default source lookup path for launch configurations of this type. Since 3.1, this attribute cab be specified in a launchDelegate extension when unspecified in the assocaited launchConfigurationType extension. Only one source path computer can be specified per launch configuration type. The unique identifier of a sourceLocator extension that is used to create the source locator for sessions launched using launch configurations of this type. Since 3.1, this attribute can be specified in a launchDelegate extension when unspecified in the assocaited launchConfigurationType extension. Only one source locater can be specified per launch configuration type. A comma-separated list of launch modes this launch delegate supports in combination with its supported modes. This attribute was added in the 3.3 release to allow configurations to be launched in a mixed mode. <p> <strong>EXPERIMENTAL</strong>. This attribute has been added as part of a work in progress. There is no guarantee that this API will remain unchanged during the 3.3 release cycle. Please do not use this API without consulting with the Platform/Debug team. </p> 3.0 The following is an example of a launch delegate extension point: <p> <pre> <extension point="org.eclipse.debug.core.launchDelegates"> <launchDelegate id="com.example.ExampleProfileDelegate" delegate="com.example.ExampleProfileDelegate" type="org.eclipse.jdt.launching.localJavaApplication" modes="profile" options"run, debug"> </launchDelegate> </extension> </pre> </p> In the example above, the specified launch delegate is contributed to launch Java applications in profile mode. The delegate supports mixed mode launching. The delegate supports profiling when launching in run or debug mode. Value of the attribute <b>delegate</b> must be a fully qualified name of a Java class that implements the interface <b>org.eclipse.debug.core.model.ILaunchConfigurationDelegate</b>. Copyright (c) 2000, 2005 IBM Corporation and others.<br> All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>