Package-level declarations
Types
The Java observer/observable pattern has a number of flaws. This class provides a base implementation of the observer/observable pattern that mitigates those flaws. This allows observers to be added and called in the order added to the component. The basic usage of this class is to have a class have an instance of Observable while implementing the ObservableIfc. The notifyObservers() method can be used to notify attached observers whenever necessary.
Permits observable pattern to be used in delegation pattern by exposing notification of observers via public method.
The Java Observer/Observable implementation has a number of flaws. This class represents an interface for objects that can be observed. Essentially, observable objects promise the basic management of classes that implement the ObserverIfc
Another way to implement observable delegation. When the observed value property is changed, observers are notified.
This interface works with observers as a call back function for when the observable needs observing