blob: 9ba10aed7d97414046fd78cd7026947b17b42726 [file] [log] [blame]
package org.eclipse.debug.core;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* A launch listener is notified of launches as they
* are added and removed from the launch manager. Also,
* when a process or debug target is added to a launch,
* listeners are notified of a change.
* <p>
* Clients may implement this interface.
* </p>
* @see ILaunch
*/
public interface ILaunchListener {
/**
* Notifies this listener that the specified
* launch has been removed.
*
* @param launch the removed launch
* @since 2.0
*/
public void launchRemoved(ILaunch launch);
/**
* Notifies this listener that the specified launch
* has been added.
*
* @param launch the newly added launch
* @since 2.0
*/
public void launchAdded(ILaunch launch);
/**
* Notifies this listener that the specified launch
* has changed. For example, a process or debug target
* has been added to the launch.
*
* @param launch the changed launch
* @since 2.0
*/
public void launchChanged(ILaunch launch);
}