Interface ILaunchTargetListener
-
- All Known Implementing Classes:
LaunchBarManager,TargetSelector
public interface ILaunchTargetListenerA listener to changes in the list and status of launch targets.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidlaunchTargetAdded(ILaunchTarget target)A launch target was added.default voidlaunchTargetRemoved(ILaunchTarget target)A launch target was removed.default voidlaunchTargetStatusChanged(ILaunchTarget target)The status of a target has changed.
-
-
-
Method Detail
-
launchTargetAdded
default void launchTargetAdded(ILaunchTarget target)
A launch target was added.- Parameters:
target- the new launch target
-
launchTargetRemoved
default void launchTargetRemoved(ILaunchTarget target)
A launch target was removed.- Parameters:
target- the target about to be removed.
-
launchTargetStatusChanged
default void launchTargetStatusChanged(ILaunchTarget target)
The status of a target has changed. Query the target to find out what the new status is.- Parameters:
target- the target whose status has changed
-
-