public interface IObserver {
    void update(Object o);
}
