Beispiel #1
0
 public StatisticsDisplay(WeatherData weatherData) {
   this.weatherData = weatherData;
   weatherData.registerObserver(this);
 }
Beispiel #2
0
 public ForecastDisplay(WeatherData weatherData) {
   this.weatherData = weatherData;
   weatherData.registerObserver(this);
 }
 public HeatIndexDisplay(WeatherData weatherData) {
   this.weatherData = weatherData;
   weatherData.registerObserver(this);
 }