/******************************************************************************* * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.tcf.internal.debug.ui.commands; import org.eclipse.debug.core.commands.IDebugCommandRequest; import org.eclipse.tcf.internal.debug.ui.model.TCFModel; import org.eclipse.tcf.internal.debug.ui.model.TCFNodeExecContext; import org.eclipse.tcf.services.IBreakpoints; import org.eclipse.tcf.services.IRunControl; public class BackOverCommand extends StepCommand { public BackOverCommand(TCFModel model) { super(model); } @Override protected boolean canExecute(IRunControl.RunControlContext ctx) { if (ctx == null) return false; if (ctx.canResume(IRunControl.RM_REVERSE_STEP_OVER_LINE)) return true; if (ctx.canResume(IRunControl.RM_REVERSE_STEP_OVER)) return true; if (ctx.canResume(IRunControl.RM_REVERSE_STEP_INTO) && model.getLaunch().getService(IBreakpoints.class) != null) return true; return false; } @Override protected void execute(final IDebugCommandRequest monitor, final IRunControl.RunControlContext ctx, boolean src_step, final Runnable done) { TCFNodeExecContext node = (TCFNodeExecContext)model.getNode(ctx.getID()); new ActionStepOver(node, src_step, true, monitor, done); } }