myOutconsole = Outconsole;
}
protected static void RunConsoledCommand(MessageConsole console, String command, IProgressMonitor monitor) throws IOException {
ExternalCommandLauncher Step = new ExternalCommandLauncher(command);
Step.setConsole(console);
Step.redirectErrorStream(true);
Step.launch(monitor);
}