org.apache.tapestry.event
Interface ChangeObserver

All Known Subinterfaces:
IPageRecorder
All Known Implementing Classes:
PageRecorder, RequestCycle

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,v 1.3 2004/02/19 17:37:55 hlship Exp $
Author:
Howard Lewis Ship

Method Summary
 void observeChange(ObservedChangeEvent event)
          Sent when the observed object changes a property.
 

Method Detail

observeChange

public void observeChange(ObservedChangeEvent event)
Sent when the observed object changes a property. The event identifies the object, the property and the new value.