/******************************************************************************* * Copyright (c) 2009-2013 CWI * 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: * * * Jurgen J. Vinju - Jurgen.Vinju@cwi.nl - CWI * * Emilie Balland - (CWI) * * Michael Steindorfer - Michael.Steindorfer@cwi.nl - CWI *******************************************************************************/ package org.rascalmpl.debug; /** * External debugging support interface to be in an front-end / UI. * I.e. how front-end / UI can communicate with the runtime. */ public interface IDebugSupport { /** * Message exchange channel between the debugger and the runtime. * * @param message the message to be transmitted */ public void processMessage(IDebugMessage message); }