|
Java™ by example!
|
|
|
|
Become a member to observe this category
|
|
Observable
An Observable object is an object that is being observed by one or more observers. You subclass the Observable object to give it this functionality. Whenever something interesting happens in the Observable object, it calls notifyObservers which notifies all observers that have previously registered by calling the Observable's method addObserver.
Related Categories
Design Patterns/J2EE Patterns
Subcategories
Questions & Answers
= answered, = unanswered
General:
How do I change the state of the Observable object?
Further Information (sorted alphabetically)
Api's:
Related Links:
|
|
|
|
|