blob: 2626998549db0fa380aaaf5d9e72574a96a1e1bb [file] [log] [blame]
package org.eclipse.debug.internal.ui;
/*
* Licensed Materials - Property of IBM,
* WebSphere Studio Workbench
* (c) Copyright IBM Corp 2000
*/
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IStep;
public class StepIntoActionDelegate extends StepActionDelegate {
private static final String PREFIX= "step_into_action.";
/**
* @see StepActionDelegate
*/
protected boolean checkCapability(IStep element) {
return element.canStepInto();
}
/**
* @see StepActionDelegate
*/
protected void stepAction(IStep element) throws DebugException {
element.stepInto();
}
/**
* @see ControlActionDelegate
*/
protected String getPrefix() {
return PREFIX;
}
}