1
edit
Changes
Observer
,no edit summary
<b>Observer</b>: Defines an updating interface for objects that should be notified
<br>
<b>ConcreteSubject</b>: Stores states of ConcreteObservers objects. Sends a notification Notifies other objects when a change has occurredbeen made.
<br>
<b>ConcreteObserver</b>: Maintains Holds a reference to the ConcreteSubjects object. Synchronizes itself with the ConcreteSubject's state.
== Code Examples ==