| java.lang.Object org.eclipse.ui.activities.ActivityEvent
ActivityEvent | final public class ActivityEvent (Code) | | An instance of this class describes changes to an instance of
IActivity . This class does not give details as to the
specifics of a change, only that the given property on the source object has
changed.
This class is not intended to be extended by clients.
since: 3.0 See Also: IActivityListener.activityChanged(ActivityEvent) |
Constructor Summary | |
public | ActivityEvent(IActivity activity, boolean activityRequirementBindingsChanged, boolean activityPatternBindingsChanged, boolean definedChanged, boolean descriptionChanged, boolean enabledChanged, boolean nameChanged) Creates a new instance of this class. | public | ActivityEvent(IActivity activity, boolean activityRequirementBindingsChanged, boolean activityPatternBindingsChanged, boolean definedChanged, boolean descriptionChanged, boolean enabledChanged, boolean nameChanged, boolean defaultEnabledChanged) Creates a new instance of this class. |
ActivityEvent | public ActivityEvent(IActivity activity, boolean activityRequirementBindingsChanged, boolean activityPatternBindingsChanged, boolean definedChanged, boolean descriptionChanged, boolean enabledChanged, boolean nameChanged)(Code) | | Creates a new instance of this class. Since 3.1 this method will assume
that the default enabled state has not changed.
Parameters: activity - the instance of the interface that changed. Parameters: activityRequirementBindingsChanged - true , iff the activityRequirementBindingsproperty changed. Parameters: activityPatternBindingsChanged - true , iff the activityPatternBindings propertychanged. Parameters: definedChanged - true , iff the defined property changed. Parameters: descriptionChanged - true , iff the description property changed. Parameters: enabledChanged - true , iff the enabled property changed. Parameters: nameChanged - true , iff the name property changed. |
ActivityEvent | public ActivityEvent(IActivity activity, boolean activityRequirementBindingsChanged, boolean activityPatternBindingsChanged, boolean definedChanged, boolean descriptionChanged, boolean enabledChanged, boolean nameChanged, boolean defaultEnabledChanged)(Code) | | Creates a new instance of this class.
Parameters: activity - the instance of the interface that changed. Parameters: activityRequirementBindingsChanged - true , iff the activityRequirementBindings property changed. Parameters: activityPatternBindingsChanged - true , iff the activityPatternBindings property changed. Parameters: definedChanged - true , iff the defined property changed. Parameters: descriptionChanged - true , iff the description property changed. Parameters: enabledChanged - true , iff the enabled property changed. Parameters: nameChanged - true , iff the name property changed. Parameters: defaultEnabledChanged - true , iff the default enabled property changed. since: 3.1 |
getActivity | public IActivity getActivity()(Code) | | Returns the instance of the interface that changed.
the instance of the interface that changed. Guaranteed not to benull . |
hasDefaultEnabledChanged | public boolean hasDefaultEnabledChanged()(Code) | | Returns whether or not the default enabled property changed.
true , iff the default enabled property changed. since: 3.1 |
hasDefinedChanged | public boolean hasDefinedChanged()(Code) | | Returns whether or not the defined property changed.
true , iff the defined property changed. |
hasDescriptionChanged | public boolean hasDescriptionChanged()(Code) | | Returns whether or not the description property changed.
true , iff the description property changed. |
hasEnabledChanged | public boolean hasEnabledChanged()(Code) | | Returns whether or not the enabled property changed.
true , iff the enabled property changed. |
hasNameChanged | public boolean hasNameChanged()(Code) | | Returns whether or not the name property changed.
true , iff the name property changed. |
haveActivityPatternBindingsChanged | public boolean haveActivityPatternBindingsChanged()(Code) | | Returns whether or not the activityPatternBindings property changed.
true , iff the activityPatternBindings property changed. |
haveActivityRequirementBindingsChanged | public boolean haveActivityRequirementBindingsChanged()(Code) | | Returns whether or not the activityRequirementBindings property changed.
true , iff the activityRequirementBindings property changed. |
|
|