145146147148149150151152
} public void stepInto() throws DebugException { if (!isPydevThread) { isStepping = true; target.postCommand(new StepCommand(target, AbstractDebuggerCommand.CMD_STEP_INTO, id)); } }
152153154155156157158159
} public void stepOver() throws DebugException { if (!isPydevThread) { isStepping = true; target.postCommand(new StepCommand(target, AbstractDebuggerCommand.CMD_STEP_OVER, id)); } }
159160161162163164165166
} public void stepReturn() throws DebugException { if (!isPydevThread) { isStepping = true; target.postCommand(new StepCommand(target, AbstractDebuggerCommand.CMD_STEP_RETURN, id)); } }