| org.eclipse.pde.core.IModelProviderEvent
All known Subclasses: org.eclipse.pde.internal.core.ModelProviderEvent,
IModelProviderEvent | public interface IModelProviderEvent (Code) | | This event will be delivered to all model provider listeners when a model
managed by the model provider changes in some way.
since: 2.0 |
MODELS_ADDED | int MODELS_ADDED(Code) | | Event is sent after the models have been added.
|
MODELS_CHANGED | int MODELS_CHANGED(Code) | | Event is sent after the models have been changed.
|
MODELS_REMOVED | int MODELS_REMOVED(Code) | | Event is sent before the models will be removed.
|
TARGET_CHANGED | int TARGET_CHANGED(Code) | | Event is sent when the target platform changes
since: 3.2 |
getAddedModels | IModel[] getAddedModels()(Code) | | Returns the models that are added
the models that have been added or an empty array |
getChangedModels | IModel[] getChangedModels()(Code) | | Returns the models that has changed
the models that has changed or an empty array |
getEventSource | Object getEventSource()(Code) | | Returns the object that fired this event.
|
getEventTypes | int getEventTypes()(Code) | | Returns the combination of flags indicating type of event. In case of
multiple changes, flags are ORed together. (a combination of
MODEL_CHANGED, MODEL_ADDED, MODEL_REMOVED)
the model change type |
getRemovedModels | IModel[] getRemovedModels()(Code) | | Returns the models that are removed
the models that have been removed or an empty array |
|
|