mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 14:59:25 +00:00
13 lines
155 B
Java
13 lines
155 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* Observer interface.
|
|
*
|
|
*/
|
|
public interface WeatherObserver {
|
|
|
|
void update(WeatherType currentWeather);
|
|
|
|
}
|