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. a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance a unique identifier that can be used to reference this launcher. fully qualified name of the Java class that implements <code>org.eclipse.debug.core.model.ILauncherDelegate</code>. 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. a label to use for the launcher. This attribute is used by the debug UI. 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. 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. a description of the launcher. Currently only used if the wizard attribute is specified. 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. a relative path of an icon that will represent the launcher in the UI if specified. 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. 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>. 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>