blob: a1d892d613bdf16a9ad0c3e66db1d22545e7d32c [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 StepOverActionDelegate extends StepActionDelegate {
private static final String PREFIX= "step_over_action.";
/**
* @see StepActionDelegate
*/
protected boolean checkCapability(IStep element) {
return element.canStepOver();
}
/**
* @see StepActionDelegate
*/
protected void stepAction(IStep element) throws DebugException {
element.stepOver();
}
/**
* @see ControlActionDelegate
*/
protected String getPrefix() {
return PREFIX;
}
}