What is Observable class in java?

The java.util.Observable class represents an observable object, or “data” in the model-view paradigm .Following are the important points about Observable − The class can be subclassed to represent an object that the application wants to have observed. An observable object can have one or more observers.

Read more

What is Observable object in java?

An observable object can have one or more observers . An observer may be any object that implements interface Observer. After an observable instance changes, an application calling the Observable ‘s notifyObservers method causes all of its observers to be notified of the change by a call to their update method.

Read more