13 lines
155 B
Java
13 lines
155 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* Observer interface.
|
|
*
|
|
*/
|
|
public interface WeatherObserver {
|
|
|
|
void update(WeatherType currentWeather);
|
|
|
|
}
|