Bug 171420 - [launching] New fields for launch delegates
diff --git a/ant/org.eclipse.ant.ui/plugin.properties b/ant/org.eclipse.ant.ui/plugin.properties
index d3d745f..9f0e623 100644
--- a/ant/org.eclipse.ant.ui/plugin.properties
+++ b/ant/org.eclipse.ant.ui/plugin.properties
@@ -1,5 +1,5 @@
 ###############################################################################
-# Copyright (c) 2000, 2006 IBM Corporation and others.
+# Copyright (c) 2000, 2007 IBM Corporation and others.
 # 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
@@ -13,10 +13,16 @@
 providerName = Eclipse.org
 
 AntBuild = Ant Build
+AntBuilder.name=Ant Builder
 AntLaunchShortcut.label = Ant Build
 AntLaunchShortcutWithDialog.label = Ant Build...
-antLaunchConfigurationTabGroup.description=Run an Ant buildfile.
-antBuilderLaunchConfigurationTabGroup.description=Create a configuration that will run an Ant buildfile during a build.
+antLaunchConfigurationTabGroup.description=Run an Ant build file.
+antBuilderLaunchConfigurationTabGroup.description=Create a configuration that will run an Ant build file during a build.
+
+AntLaunchDelegate.name=Eclipse Ant Launcher
+AntLaunchDelegate.description=The Eclipse Ant Launcher supports running and debugging Ant build files.
+AntBuilderLaunchDelegate.name= Eclipse Ant Builder Launcher
+AntBuilderLaunchDelegate.description=The Eclipse Ant Builder Launcher supports running Ant build files.
 
 AntEditor.name=Ant Editor
 AddBookmark.label=Add Boo&kmark...
diff --git a/ant/org.eclipse.ant.ui/plugin.xml b/ant/org.eclipse.ant.ui/plugin.xml
index 2ecbb22..44514e3 100644
--- a/ant/org.eclipse.ant.ui/plugin.xml
+++ b/ant/org.eclipse.ant.ui/plugin.xml
@@ -16,21 +16,25 @@
    <extension
          point="org.eclipse.debug.core.launchConfigurationTypes">
       <launchConfigurationType
-            name="%AntBuild"
-            delegate="org.eclipse.ant.internal.ui.launchConfigurations.AntLaunchDelegate"
             category="org.eclipse.ui.externaltools"
+            delegate="org.eclipse.ant.internal.ui.launchConfigurations.AntLaunchDelegate"
+            delegateDescription="%AntLaunchDelegate.description"
+            delegateName="%AntLaunchDelegate.name"
+            id="org.eclipse.ant.AntLaunchConfigurationType"
+            migrationDelegate="org.eclipse.ant.internal.ui.launchConfigurations.AntMigrationDelegate"
             modes="run, debug"
+            name="%AntBuild"
             sourceLocatorId="org.eclipse.ant.ui.debug.sourceLookupDirector"
-            sourcePathComputerId="org.eclipse.ant.ui.debug.sourcePathComputer"
-			migrationDelegate="org.eclipse.ant.internal.ui.launchConfigurations.AntMigrationDelegate"
-            id="org.eclipse.ant.AntLaunchConfigurationType">
+            sourcePathComputerId="org.eclipse.ant.ui.debug.sourcePathComputer">
       </launchConfigurationType>
       <launchConfigurationType
-            name="%AntBuild"
-            delegate="org.eclipse.ant.internal.ui.launchConfigurations.AntLaunchDelegate"
             category="org.eclipse.ui.externaltools.builder"
+            delegate="org.eclipse.ant.internal.ui.launchConfigurations.AntLaunchDelegate"
+            delegateDescription="%AntBuilderLaunchDelegate.description"
+            delegateName="%AntBuilderLaunchDelegate.name"
+            id="org.eclipse.ant.AntBuilderLaunchConfigurationType"
             modes="run"
-            id="org.eclipse.ant.AntBuilderLaunchConfigurationType">
+            name="%AntBuilder">
       </launchConfigurationType>
    </extension>
    <extension