public interface Observer
Observer
接口。
Observable
Modifier and Type | Method and Description |
---|---|
void |
update(Observable o, Object arg)
每当观察到的对象发生变化时,都会调用此方法。
|
void update(Observable o, Object arg)
notifyObservers
方法,让所有对象的观察者通知更改。
o
- 可观察对象。
arg
- an argument passed to the
notifyObservers
method.