Datasets:
ArXiv:
License:
File size: 175 Bytes
c574d3a | 1 2 3 4 5 6 7 8 9 10 | package weatherstationex;
/**
* Created by Administrator on 2017/6/14.
*/
public interface Observer
{
void update(float temperature, float humidity, float pressure);
}
|