001package headfirst.observer.WeatherStation;
002
003public interface Observer {
004        public void update(float temp, float humidity, float pressure);
005}