import java.io.File;
import java.text.MessageFormat;
-import java.util.Map;
+//import java.util.Map;
import net.sourceforge.phpdt.externaltools.internal.model.ExternalToolsModelMessages;
import net.sourceforge.phpdt.externaltools.internal.model.VariableContextManager;
-import net.sourceforge.phpdt.externaltools.internal.registry.ExternalToolMigration;
+//import net.sourceforge.phpdt.externaltools.internal.registry.ExternalToolMigration;
import net.sourceforge.phpdt.externaltools.internal.registry.RefreshScopeVariable;
import net.sourceforge.phpdt.externaltools.internal.registry.RefreshScopeVariableRegistry;
import net.sourceforge.phpdt.externaltools.model.IExternalToolConstants;
*/
public class ExternalToolsUtil {
- private static final String LAUNCH_CONFIG_HANDLE = "LaunchConfigHandle"; //$NON-NLS-1$
+ //private static final String LAUNCH_CONFIG_HANDLE = "LaunchConfigHandle"; //$NON-NLS-1$
/**
* Not to be instantiated.
* @return a launch configuration, a launch configuration working copy, or
* <code>null</code> if not possible.
*/
- public static ILaunchConfiguration configFromBuildCommandArgs(
- Map commandArgs) {
- String configHandle = (String) commandArgs.get(LAUNCH_CONFIG_HANDLE);
- if (configHandle == null) {
- // Probably an old-style external tool. Try to migrate.
- return ExternalToolMigration.configFromArgumentMap(commandArgs);
- }
- try {
- return DebugPlugin.getDefault().getLaunchManager()
- .getLaunchConfiguration(configHandle);
- } catch (CoreException e) {
- return null;
- }
- }
+// public static ILaunchConfiguration configFromBuildCommandArgs(
+// Map commandArgs) {
+// String configHandle = (String) commandArgs.get(LAUNCH_CONFIG_HANDLE);
+// if (configHandle == null) {
+// // Probably an old-style external tool. Try to migrate.
+// return ExternalToolMigration.configFromArgumentMap(commandArgs);
+// }
+// try {
+// return DebugPlugin.getDefault().getLaunchManager()
+// .getLaunchConfiguration(configHandle);
+// } catch (CoreException e) {
+// return null;
+// }
+// }
/**
* Executes an external progam and saves the LaunchConfiguration under