blob: f3c85f5040fdbe9811df9a1a3ba03c5ca0ca6e33 [file] [log] [blame]
package org.eclipse.debug.internal.ui.actions;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.ITerminate;
import org.eclipse.debug.internal.ui.views.launch.LaunchView;
public class TerminateAndRemoveActionDelegate extends AbstractDebugActionDelegate {
/**
* @see AbstractDebugActionDelegate#doAction(Object)
*/
protected void doAction(Object element) throws DebugException {
LaunchView.terminateAndRemove(element);
}
/**
* @see AbstractDebugActionDelegate#isEnabledFor(Object)
*/
protected boolean isEnabledFor(Object element) {
if (element instanceof ITerminate) {
ITerminate terminate= (ITerminate)element;
//do not want to terminate an attach launch that does not
//have termination enabled
return terminate.canTerminate() || terminate.isTerminated();
}
return false;
}
/**
* @see AbstractDebugActionDelegate#getStatusMessage()
*/
protected String getStatusMessage() {
return ActionMessages.getString("TerminateAndRemoveActionDelegate.Exceptions_occurred_attempting_to_terminate_and_remove_2"); //$NON-NLS-1$
}
/**
* @see AbstractDebugActionDelegate#getErrorDialogMessage()
*/
protected String getErrorDialogMessage() {
return ActionMessages.getString("TerminateAndRemoveActionDelegate.Terminate_and_remove_failed_1"); //$NON-NLS-1$
}
/**
* @see AbstractDebugActionDelegate#getErrorDialogTitle()
*/
protected String getErrorDialogTitle() {
return ActionMessages.getString("TerminateAndRemoveActionDelegate.Terminate_and_Remove;_3"); //$NON-NLS-1$
}
}