Package br.unicamp.ic.example.subject

Source Code of br.unicamp.ic.example.subject.Subject

package br.unicamp.ic.example.subject;

import java.util.Vector;

import br.unicamp.ic.example.observer.Observer;

public class Subject {
  private Vector list = new Vector();
 
  public void attach(Observer o) {
    list.add(o);
  }
 
  public void change_state() {
    for ( Object o : list) {
      Observer obs = (Observer) o;
      obs.update();
    }
  }
}
TOP

Related Classes of br.unicamp.ic.example.subject.Subject

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.