001package headfirst.observer.WeatherStation;
002
003public interface DisplayElement {
004        public void display();
005}