public interface TObserver
Modifier and Type | Method and Description |
---|---|
void |
update(TObservable observable,
Object data)
This method is called if the specified
Observable object's
notifyObservers method is called (because the Observable
object has been updated. |
void update(TObservable observable, Object data)
Observable
object's
notifyObservers
method is called (because the Observable
object has been updated.observable
- the TObservable
object.data
- the data passed to TObservable.notifyObservers(Object)
.Copyright © 2019. All rights reserved.