Class Dispatcher
- public class Dispatcher
- extends Observable
A simplified Observable class that immediately notifies its Observers when its notifyAll() method is called. The changed state of the Dispatcher does not need to be separately set.

notifyAll
(Object)
- Immediately notifies all the Observers held

notifyAll
public void notifyAll(Object param)
- Immediately notifies all the Observers held.
- Parameters:
- param - An input parameter that is passed on to all the Observers.