1 11 package org.eclipse.debug.internal.ui.actions; 12 13 14 import org.eclipse.debug.core.DebugException; 15 import org.eclipse.debug.core.model.IStep; 16 17 public class StepOverActionDelegate extends StepActionDelegate { 18 19 22 protected boolean checkCapability(IStep element) { 23 return element.canStepOver(); 24 } 25 26 29 protected void stepAction(IStep element) throws DebugException { 30 element.stepOver(); 31 } 32 33 36 protected String getStatusMessage() { 37 return ActionMessages.StepOverActionDelegate_Exceptions_occurred_attempting_to_step_over_the_frame_2; } 39 40 43 protected String getErrorDialogMessage() { 44 return ActionMessages.StepOverActionDelegate_Step_over_failed_1; } 46 47 50 protected String getActionDefinitionId() { 51 return "org.eclipse.debug.internal.ui.actions.StepOverActionDelegate"; } 53 } 54 | Popular Tags |