Java Observable.notifyObservers()

Syntax

Observable.notifyObservers() has the following syntax.

public void notifyObservers()

Example

In the following code shows how to use Observable.notifyObservers() method.


//w  w w  .  j a va  2  s  .  c  om

import java.util.Observable;
import java.util.Observer;

class ObservedObject extends Observable {
   private String watchedValue;
   
   public ObservedObject(String value) {
      watchedValue = value;
   }
   
   public void setValue(String value) {
      if(!watchedValue.equals(value)) {
         System.out.println("Value changed to new value: "+value);
         watchedValue = value;
         
         setChanged();
         notifyObservers();
      }
   }
}
class MainObserver implements Observer {

   
   public void update(Observable obj, Object arg) {
      System.out.println("Update called");
   }
}

public class Main{
  
   public static void main(String[] args) {
      ObservedObject watched = new ObservedObject("Original Value");
      MainObserver watcher = new MainObserver();

      watched.addObserver(watcher);
      watched.setValue("New Value");
   }

}

The code above generates the following result.