blob: b7352b68d2c62366ab55425d9a0d191678cdcd96 [file] [log] [blame]
package org.eclipse.debug.internal.ui;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
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;
}
}