MCPcopy Index your code
hub / github.com/Seogeurim/CS-study / Observable

Interface Observable

contents/design-pattern/code/ObserverJava/Observable.java:1–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1public interface Observable {
2 void addObserver(NetflixUser user);
3
4 void deleteObserver(NetflixUser user);
5
6 void notifyMovie(String content);
7
8 void notifyAnimation(String content);
9}

Callers

nothing calls this directly

Implementers 1

Netflixcontents/design-pattern/code/ObserverJ

Calls

no outgoing calls

Tested by

no test coverage detected