org.apache.tapestry.event
Interface ChangeObserver
- All Known Subinterfaces:
- IPageRecorder
- All Known Implementing Classes:
- PageRecorder, RequestCycle, SessionPageRecorder
public interface ChangeObserver
May observe changes in an object's properties. This is a "weak" variation
on JavaBean's style bound properties. It is used when there will be at most
a single listener on property changes, and that the listener is not interested
in the old value.
- Version:
- $Id: ChangeObserver.java 243791 2004-02-19 17:38:13Z hlship $
- Author:
- Howard Lewis Ship
observeChange
void observeChange(ObservedChangeEvent event)
- Sent when the observed object changes a property. The event identifies
the object, the property and the new value.