blob: d08a24748f396edc0403d02be51396cd596ea1b4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* R.Dvorak and others - QVTo debugger framework
* E.D.Willink - revised API for OCL debugger framework
*******************************************************************************/
package org.eclipse.ocl.examples.debug.vm;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.examples.debug.vm.evaluator.VMEvaluationStepper;
import org.eclipse.ocl.examples.debug.vm.event.VMEvent;
import org.eclipse.ocl.examples.debug.vm.request.VMRequest;
public interface IVMDebuggerShell
{
boolean isSessionStarted();
void sessionStarted(@NonNull VMEvaluationStepper evaluator);
VMRequest popRequest();
VMRequest waitAndPopRequest(@NonNull VMEvent suspend) throws InterruptedException;
VMRequest peekRequest();
void handleVMEvent(@NonNull VMEvent event);
@NonNull VMBreakpointManager getBreakPointManager();
}