Package org.eclipse.ui.contexts
Class ContextManagerEvent
java.lang.Object
org.eclipse.ui.contexts.ContextManagerEvent
Deprecated.
Please use the "org.eclipse.core.commands" plug-in instead.
An instance of this class describes changes to an instance of
 
IContextManager.
 This class is not intended to be extended by clients.
- Since:
- 3.0
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionContextManagerEvent(IContextManager contextManager, boolean definedContextIdsChanged, boolean enabledContextIdsChanged, Set previouslyDefinedContextIds, Set previouslyEnabledContextIds) Deprecated.Creates a new instance of this class.
- 
Method SummaryModifier and TypeMethodDescriptionDeprecated.Returns the instance of the interface that changed.Deprecated.Returns the set of identifiers to previously defined contexts.Deprecated.Returns the set of identifiers to previously enabled contexts.booleanDeprecated.Returns whether or not the definedContextIds property changed.booleanDeprecated.Returns whether or not the enabledContextIds property changed.
- 
Constructor Details- 
ContextManagerEventpublic ContextManagerEvent(IContextManager contextManager, boolean definedContextIdsChanged, boolean enabledContextIdsChanged, Set previouslyDefinedContextIds, Set previouslyEnabledContextIds) Deprecated.Creates a new instance of this class.- Parameters:
- contextManager- the instance of the interface that changed.
- definedContextIdsChanged- true, iff the definedContextIds property changed.
- enabledContextIdsChanged- true, iff the enabledContextIds property changed.
- previouslyDefinedContextIds- the set of identifiers to previously defined contexts. This set may be empty. If this set is not empty, it must only contain instances of- String. This set must be- nullif definedContextIdsChanged is- falseand must not be null if definedContextIdsChanged is- true.
- previouslyEnabledContextIds- the set of identifiers to previously enabled contexts. This set may be empty. If this set is not empty, it must only contain instances of- String. This set must be- nullif enabledContextIdsChanged is- falseand must not be null if enabledContextIdsChanged is- true.
 
 
- 
- 
Method Details- 
getContextManagerDeprecated.Returns the instance of the interface that changed.- Returns:
- the instance of the interface that changed. Guaranteed not to be
         null.
 
- 
getPreviouslyDefinedContextIdsDeprecated.Returns the set of identifiers to previously defined contexts.- Returns:
- the set of identifiers to previously defined contexts. This set may
         be empty. If this set is not empty, it is guaranteed to only contain
         instances of String. This set is guaranteed to benullif haveDefinedContextIdsChanged() isfalseand is guaranteed to not be null if haveDefinedContextIdsChanged() istrue.
 
- 
getPreviouslyEnabledContextIdsDeprecated.Returns the set of identifiers to previously enabled contexts.- Returns:
- the set of identifiers to previously enabled contexts. This set may
         be empty. If this set is not empty, it is guaranteed to only contain
         instances of String. This set is guaranteed to benullif haveEnabledContextIdsChanged() isfalseand is guaranteed to not be null if haveEnabledContextIdsChanged() istrue.
 
- 
haveDefinedContextIdsChangedpublic boolean haveDefinedContextIdsChanged()Deprecated.Returns whether or not the definedContextIds property changed.- Returns:
- true, iff the definedContextIds property changed.
 
- 
haveEnabledContextIdsChangedpublic boolean haveEnabledContextIdsChanged()Deprecated.Returns whether or not the enabledContextIds property changed.- Returns:
- true, iff the enabledContextIds property changed.
 
 
-