1 11 package org.eclipse.debug.internal.ui.actions; 12 13 14 15 import org.eclipse.debug.core.DebugException; 16 import org.eclipse.debug.core.model.IStep; 17 18 public class StepIntoActionDelegate extends StepActionDelegate { 19 20 23 protected boolean checkCapability(IStep element) { 24 return element.canStepInto(); 25 } 26 27 30 protected void stepAction(IStep element) throws DebugException { 31 element.stepInto(); 32 } 33 34 37 protected String getStatusMessage() { 38 return ActionMessages.StepIntoActionDelegate_Exceptions_occurred_attempting_to_step_into_the_frame_2; } 40 41 44 protected String getErrorDialogMessage() { 45 return ActionMessages.StepIntoActionDelegate_Step_into_failed_1; } 47 48 51 protected String getActionDefinitionId() { 52 return "org.eclipse.debug.internal.ui.actions.StepIntoActionDelegate"; } 54 } 55 | Popular Tags |