コード例 #1
0
 public CurrentConditionsDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
コード例 #2
0
 public ForecastDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
コード例 #3
0
 public StatsDisplay(WeatherData weatherData)
 {
     this.weatherdata = weatherData;
     weatherData.RegisterObserver(this);
 }