com.faa.patterns.Observer
Interface Observer

All Known Implementing Classes:
DOMCrawlerFrame

public interface Observer

An implementation of the ObservableIF [GoF95] part of the observer pattern in Java


Method Summary
 void notify(Observable observable)
          receive notification of change from an observed object This is done in order to allow more than one observable object to be watched by the observer
 

Method Detail

notify

public void notify(Observable observable)
receive notification of change from an observed object This is done in order to allow more than one observable object to be watched by the observer
Parameters:
observable - the observable object that just changed.