Package org.eclipse.ui.activities
Interface IActivityListener
-
public interface IActivityListener
An instance of this interface can be used by clients to receive notification of changes to one or more instances ofIActivity
.This interface may be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
activityChanged(ActivityEvent activityEvent)
Notifies that one or more properties of an instance ofIActivity
have changed.
-
-
-
Method Detail
-
activityChanged
void activityChanged(ActivityEvent activityEvent)
Notifies that one or more properties of an instance ofIActivity
have changed. Specific details are described in theActivityEvent
.- Parameters:
activityEvent
- the activity event. Guaranteed not to benull
.
-
-