MCPcopy Create free account
hub / github.com/Seogeurim/CS-study / Netflix

Method Netflix

contents/design-pattern/code/ObserverJava/Netflix.java:7–9  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5 ArrayList<NetflixUser> userList;
6
7 public Netflix() {
8 this.userList = new ArrayList<NetflixUser>();
9 }
10
11 public void updateMovie(String movie){
12 notifyMovie(movie);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected