Package org.eclipse.ui.contexts
Class ContextEvent
java.lang.Object
org.eclipse.ui.contexts.ContextEvent
Deprecated.
Please use the "org.eclipse.core.commands" plug-in instead.
An instance of this class describes changes to an instance of
 
IContext.
 This class is not intended to be extended by clients.
- Since:
- 3.0
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionContextEvent(IContext context, boolean definedChanged, boolean enabledChanged, boolean nameChanged, boolean parentIdChanged) Deprecated.Creates a new instance of this class.
- 
Method SummaryModifier and TypeMethodDescriptionDeprecated.Returns the instance of the interface that changed.booleanDeprecated.Returns whether or not the defined property changed.booleanDeprecated.Returns whether or not the enabled property changed.booleanDeprecated.Returns whether or not the name property changed.booleanDeprecated.Returns whether or not the parentId property changed.
- 
Constructor Details- 
ContextEventpublic ContextEvent(IContext context, boolean definedChanged, boolean enabledChanged, boolean nameChanged, boolean parentIdChanged) Deprecated.Creates a new instance of this class.- Parameters:
- context- the instance of the interface that changed.
- definedChanged- true, iff the defined property changed.
- enabledChanged- true, iff the enabled property changed.
- nameChanged- true, iff the name property changed.
- parentIdChanged- true, iff the parentId property changed.
 
 
- 
- 
Method Details- 
getContextDeprecated.Returns the instance of the interface that changed.- Returns:
- the instance of the interface that changed. Guaranteed not to be
         null.
 
- 
hasDefinedChangedpublic boolean hasDefinedChanged()Deprecated.Returns whether or not the defined property changed.- Returns:
- true, iff the defined property changed.
 
- 
hasEnabledChangedpublic boolean hasEnabledChanged()Deprecated.Returns whether or not the enabled property changed.- Returns:
- true, iff the enabled property changed.
 
- 
hasNameChangedpublic boolean hasNameChanged()Deprecated.Returns whether or not the name property changed.- Returns:
- true, iff the name property changed.
 
- 
hasParentIdChangedpublic boolean hasParentIdChanged()Deprecated.Returns whether or not the parentId property changed.- Returns:
- true, iff the parentId property changed.
 
 
-