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 extensisble, 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. specifies the fully qualified name of the Java class that implements <samp>ILaunchConfigurationDelegate</samp>. Launch configuration instances of this delegate's type will delegate to instances of this class to perform launching. specifies a comma-separated list of the modes this lauch delegate supports. identifier of an existing launch configuration type that this launch delegate is capable of launching. 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"> </launchDelegate> </extension> </pre> </p> In the example above, the specified launch delegate is contributed to launch Java applications in profile 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>. <p> <a href="hglegal.htm"> <img SRC="ngibmcpy.gif" ALT="Copyright (c) 2000, 2003 IBM Corporation and others. All Rights Reserved." BORDER=0 height=14 width=324></a> </p>