Package org.eclipse.debug.core
Interface ILaunchListener
-
- All Known Implementing Classes:
AbstractSourceLookupDirector,Launch
public interface ILaunchListenerA 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:
ILaunch,ILaunchesListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidlaunchAdded(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 Detail
-
launchRemoved
void launchRemoved(ILaunch launch)
Notifies this listener that the specified launch has been removed.- Parameters:
launch- the removed launch- Since:
- 2.0
-
launchAdded
void launchAdded(ILaunch launch)
Notifies this listener that the specified launch has been added.- Parameters:
launch- the newly added launch- Since:
- 2.0
-
launchChanged
void launchChanged(ILaunch launch)
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
-
-