blob: 7bf3a8e7cb8717a4d9797b02756aaa6a2dca8a53 [file] [log] [blame]
package org.eclipse.debug.internal.ui.actions;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.debug.core.model.IProcess;
import org.eclipse.debug.internal.ui.views.console.ConsoleView;
import org.eclipse.debug.ui.IDebugView;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.texteditor.IUpdate;
/**
* Terminate action for the console. Terminates the process
* currently being displayed in the console.
*/
public class ConsoleTerminateActionDelegate extends TerminateActionDelegate implements IUpdate {
/**
* Returns a selection with the console view's
* current process, or an empty selection.
*
* @return structured selection
*/
protected IStructuredSelection getSelection() {
IViewPart view = getView();
if (view instanceof ConsoleView) {
IProcess process = ((ConsoleView)view).getProcess();
if (process != null) {
return new StructuredSelection(process);
}
}
return StructuredSelection.EMPTY;
}
/**
* @see AbstractDebugActionDelegate#init(IViewPart)
*/
public void init(IViewPart view) {
super.init(view);
IDebugView debugView= (IDebugView)view.getAdapter(IDebugView.class);
if (debugView != null) {
debugView.add(this);
}
}
/**
* @see AbstractDebugActionDelegate#dispose()
*/
public void dispose() {
IViewPart view= getView();
IDebugView debugView= (IDebugView)view.getAdapter(IDebugView.class);
if (debugView != null) {
debugView.remove(this);
}
super.dispose();
}
/**
* @see IUpdate#update()
*/
public void update() {
if (getAction() != null) {
update(getAction(), getSelection());
}
}
}