Eclipse Platform
2.0

org.eclipse.debug.core
Interface ILaunchListener


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:
ILaunch

Method Summary
 void launchAdded(ILaunch launch)
          Notifies this listener that the specified launch has been added.
 void launchChanged(ILaunch launch)
          Notifies this listener that the specified launch has changed.
 void launchRemoved(ILaunch launch)
          Notifies this listener that the specified launch has been removed.
 

Method Detail

launchRemoved

public void launchRemoved(ILaunch launch)
Notifies this listener that the specified launch has been removed.

Parameters:
launch - the removed launch
Since:
2.0

launchAdded

public void launchAdded(ILaunch launch)
Notifies this listener that the specified launch has been added.

Parameters:
launch - the newly added launch
Since:
2.0

launchChanged

public 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

Eclipse Platform
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.