blob: de58763f8e0feb492602fa6bc553aaf76f9a1a23 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.actions;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.model.IDebugElement;
import org.eclipse.debug.core.model.IProcess;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
import org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationManager;
public class RelaunchActionDelegate extends AbstractDebugActionDelegate {
/**
* @see AbstractDebugActionDelegate#doAction(Object)
*/
protected void doAction(Object object) {
if (object instanceof IDebugElement) {
relaunch((IDebugElement)object);
} else if (object instanceof ILaunch) {
relaunch((ILaunch)object);
} else if (object instanceof IProcess) {
relaunch((IProcess)object);
}
}
public static void relaunch(IDebugElement element) {
relaunch(element.getLaunch());
}
public static void relaunch(IProcess process) {
relaunch(process.getLaunch());
}
public static void relaunch(ILaunch launch) {
relaunch(launch.getLaunchConfiguration(), launch.getLaunchMode());
}
public static void relaunch(ILaunch launch, String mode) {
relaunch(launch.getLaunchConfiguration(), mode);
}
/**
* Re-launches the given configuration in the specified mode.
*/
public static void relaunch(ILaunchConfiguration config, String mode) {
try {
config.launch(mode, null);
} catch (CoreException ce) {
DebugUIPlugin.errorDialog(DebugUIPlugin.getShell(), ActionMessages.getString("RelaunchActionDelegate.Launch_Failed_1"), ActionMessages.getString("RelaunchActionDelegate.An_exception_occurred_while_launching_2"), ce); //$NON-NLS-1$ //$NON-NLS-2$
}
}
/**
* @see AbstractDebugActionDelegate#isEnabledFor(Object)
*/
protected boolean isEnabledFor(Object element) {
ILaunch launch= null;
if (element instanceof ILaunch) {
launch= (ILaunch)element;
} else if (element instanceof IDebugElement) {
launch= ((IDebugElement)element).getLaunch();
} else if (element instanceof IProcess) {
launch= ((IProcess)element).getLaunch();
}
return launch != null && launch.getLaunchConfiguration() != null && LaunchConfigurationManager.isVisible(launch.getLaunchConfiguration());
}
/**
* @see AbstractDebugActionDelegate#getErrorDialogMessage()
*/
protected String getErrorDialogMessage() {
return ActionMessages.getString("RelaunchActionDelegate.Launch_Failed_1"); //$NON-NLS-1$
}
/**
* @see AbstractDebugActionDelegate#getErrorDialogTitle()
*/
protected String getErrorDialogTitle() {
return ActionMessages.getString("RelaunchActionDelegate.Launch_1"); //$NON-NLS-1$
}
/**
* @see AbstractDebugActionDelegate#getStatusMessage()
*/
protected String getStatusMessage() {
return ActionMessages.getString("RelaunchActionDelegate.An_exception_occurred_while_launching_2"); //$NON-NLS-1$
}
}