org.apache.ws.jaxme
Interface Observer
- PMImpl.ListObserver
public interface Observer
An Observer is the corresponding interface to the
Observable
: The Observer is watching the
Observable.
If the Observable changes its state, it calls the
Observers
setObservableState()
method.
$Id: Observer.java 231881 2004-07-23 07:18:09Z jochen $ void | notify(Object pObject) - The Observable indicates that its state has
changed.
|
notify
public void notify(Object pObject)
The Observable indicates that its state has
changed. The Observer must inspect the Observable
to detect what exactly has changed.