The notifyObservers Method
Notification involves enumerating through the Vector and notifying each observer
private void notifyObservers() {
Enumeration enum = observers.elements();
while (enum.hasMoreElements()) {
CounterObserver observer =
(CounterObserver)enum.nextElement();
observer.counterHasChanged(this);