Untamed: A class can implement the Observer interface when it
wants to be informed of changes in observable objects.
java.util.Observable void
update(Observable o,
Object arg)
public void update(Observable o, Object arg)
notifyObservers method to have all the object's
observers notified of the change.
o - the observable object.arg - an argument passed to the notifyObservers
method.