Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-09-05 18:17:19 +0000
committerDarin Swanson2003-09-05 18:17:19 +0000
commit29fbf882d045796d61ae97ff99d3134e43249171 (patch)
tree08ccc7c0f18ae2db37a25819d2b4cc83095caf08 /org.eclipse.ui.externaltools/Program Tools Support
parent65b20ca66d278dd63f134515df44496e2811be41 (diff)
downloadeclipse.platform.debug-29fbf882d045796d61ae97ff99d3134e43249171.tar.gz
eclipse.platform.debug-29fbf882d045796d61ae97ff99d3134e43249171.tar.xz
eclipse.platform.debug-29fbf882d045796d61ae97ff99d3134e43249171.zip
Bug 41068 - Ant in separate VM does not color output
Diffstat (limited to 'org.eclipse.ui.externaltools/Program Tools Support')
-rw-r--r--org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ExternalToolsProgramMessages.properties7
-rw-r--r--org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java2
2 files changed, 6 insertions, 3 deletions
diff --git a/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ExternalToolsProgramMessages.properties b/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ExternalToolsProgramMessages.properties
index e6d3ec6b0..0e39f0374 100644
--- a/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ExternalToolsProgramMessages.properties
+++ b/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ExternalToolsProgramMessages.properties
@@ -9,8 +9,11 @@
# IBM Corporation - initial API and implementation
###############################################################################
-ProgramMainTab.Select=&Select a program:
+BackgroundResourceRefresher.0=Refreshing resources...
+
ProgramLaunchDelegate.Workbench_Closing_1=Workbench Closing
ProgramLaunchDelegate.The_workbench_is_exiting=The workbench is exiting and a program launched from an external tool appears to still be running. These programs will be terminated when the workbench exits. It is recommended that you exit any external programs launched from the workbench before you proceed.\n\nClick OK to continue exiting the workbench.
-BackgroundResourceRefresher.0=Refreshing resources...
ProgramLaunchDelegate.3=Running {0}...
+ProgramLaunchDelegate.4=An IProcess could not be created for the launch
+
+ProgramMainTab.Select=&Select a program: \ No newline at end of file
diff --git a/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java b/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java
index 5649677dd..11b99aacb 100644
--- a/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java
+++ b/org.eclipse.ui.externaltools/Program Tools Support/org/eclipse/ui/externaltools/internal/program/launchConfigurations/ProgramLaunchDelegate.java
@@ -169,7 +169,7 @@ public class ProgramLaunchDelegate implements ILaunchConfigurationDelegate {
process = DebugPlugin.newProcess(launch, p, location.toOSString(), processAttributes);
if (process == null) {
p.destroy();
- throw new CoreException(new Status(IStatus.ERROR, IExternalToolConstants.PLUGIN_ID, IExternalToolConstants.ERR_INTERNAL_ERROR, "An IProcess could not be created for the launch", null));
+ throw new CoreException(new Status(IStatus.ERROR, IExternalToolConstants.PLUGIN_ID, IExternalToolConstants.ERR_INTERNAL_ERROR, ExternalToolsProgramMessages.getString("ProgramLaunchDelegate.4"), null)); //$NON-NLS-1$
}
}

Back to the top