Source of Subject.java


  1: public interface Subject {
  2:     public void registerInterest(Observer obs);
  3: }
  4: