org.eclipse.jpt.utility.model.listener
Interface PropertyChangeListener
- All Superinterfaces:
- ChangeListener, java.util.EventListener
public interface PropertyChangeListener
- extends ChangeListener
A "property change" event gets fired whenever a model changes a "bound"
property. You can register a PropertyChangeListener with a source
model so as to be notified of any bound property updates.
Provisional API: This interface is part of an interim API that is still
under development and expected to change significantly before reaching
stability. It is available at this early stage to solicit feedback from
pioneering adopters on the understanding that any code that uses this API
will almost certainly be broken (repeatedly) as the API evolves.
propertyChanged
void propertyChanged(PropertyChangeEvent event)
- This method gets called when a model has changed a bound property.
- Parameters:
event
- A StateChangeEvent describing the event source
and the property's old and new values.