Skip to content

Instantly share code, notes, and snippets.

@cybersonic
Created October 24, 2012 15:57
Show Gist options
  • Save cybersonic/3946919 to your computer and use it in GitHub Desktop.
Save cybersonic/3946919 to your computer and use it in GitHub Desktop.
import java.util.Observable;
public class MyDataStore extends Observable{
public void updateMeSomehow(){
setChanged();
notifyObservers();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment