Package org.eclipse.debug.core
Interface ILaunchListener
- All Known Implementing Classes:
AbstractSourceLookupDirector,Launch
public interface ILaunchListener
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.
Clients may implement this interface.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidlaunchAdded(ILaunch launch) Notifies this listener that the specified launch has been added.voidlaunchChanged(ILaunch launch) Notifies this listener that the specified launch has changed.voidlaunchRemoved(ILaunch launch) Notifies this listener that the specified launch has been removed.
-
Method Details
-
launchRemoved
Notifies this listener that the specified launch has been removed.- Parameters:
launch- the removed launch- Since:
- 2.0
-
launchAdded
Notifies this listener that the specified launch has been added.- Parameters:
launch- the newly added launch- Since:
- 2.0
-
launchChanged
Notifies this listener that the specified launch has changed. For example, a process or debug target has been added to the launch.- Parameters:
launch- the changed launch- Since:
- 2.0
-