Skip to content

Instantly share code, notes, and snippets.

@goyuninfo
Created November 26, 2013 04:53
Show Gist options
  • Save goyuninfo/7653661 to your computer and use it in GitHub Desktop.
Save goyuninfo/7653661 to your computer and use it in GitHub Desktop.
package it.i88.ca.example.se.observer;
import java.util.Observable;
import java.util.Observer;
class MyObserver implements Observer {
public void update(Observable o, Object arg) {
System.out.println("update: " + arg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment