2014-08-22 21:57:54 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
|
2014-08-31 11:17:21 +03:00
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* Observer interface.
|
2014-10-08 13:42:12 +01:00
|
|
|
*
|
2014-08-31 11:17:21 +03:00
|
|
|
*/
|
2014-08-22 21:57:54 +03:00
|
|
|
public interface WeatherObserver {
|
|
|
|
|
|
|
|
|
|
void update(WeatherType currentWeather);
|
2014-10-08 13:42:12 +01:00
|
|
|
|
2014-08-22 21:57:54 +03:00
|
|
|
}
|