| java.lang.Object org.eclipse.pde.core.ModelChangedEvent
All known Subclasses: org.eclipse.pde.internal.core.plugin.AttributeChangedEvent,
ModelChangedEvent | public ModelChangedEvent(IModelChangeProvider provider, int type, Object[] objects, String changedProperty)(Code) | | The constructor of the event.
Parameters: provider - the change provider Parameters: type - the event type Parameters: objects - the changed objects Parameters: changedProperty - or null if not applicable |
ModelChangedEvent | public ModelChangedEvent(IModelChangeProvider provider, Object object, String changedProperty, Object oldValue, Object newValue)(Code) | | A costructor that should be used for changes of object properties.
Parameters: provider - the event provider Parameters: object - affected object Parameters: changedProperty - changed property of the affected object Parameters: oldValue - the value before the change Parameters: newValue - the value after the change |
getNewValue | public Object getNewValue()(Code) | | Returns the new property value.
the value after the change |
getOldValue | public Object getOldValue()(Code) | | Returns the old property value.
the value before the change |
|
|