Package cs.eng1.piazzapanic.observable
-
Interface Summary Interface Description Observer<T> An observer can be implemented in a way where it can be registered with a Subject of the same type T which will contains a central value which notifies this observer every time that value changes.Subject<T> A Subject contains a list of registered observers which all receive the same value of type T whenever it is updated.