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 Type
    Method
    Description
    void
    Notifies this listener that the specified launch has been added.
    void
    Notifies this listener that the specified launch has changed.
    void
    Notifies this listener that the specified launch has been removed.
  • Method Details

    • 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