blob: 6b912cee8a218bb31b58ab49cc2a066ad4fe8265 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2004, 2006 Fraunhofer Gesellschaft, Munich, Germany,
* for its Fraunhofer Institute for Computer Architecture and Software
* Technology (FIRST), Berlin, Germany and Technical University Berlin,
* Germany.
*
* 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
* $Id: IOTDebugEventListener.java 23427 2010-02-03 22:23:59Z stephan $
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Fraunhofer FIRST - Initial API and implementation
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otdt.debug;
import org.eclipse.debug.core.ILaunch;
/**
* @author gis
*/
public interface IOTDebugEventListener
{
public void launched(ILaunch launch);
public void teamInstantiated(TeamInstance newTeam);
public void teamDisposed(int idx);
public void activationStateChanged(TeamInstance teamInstance);
}