Skip to content

Instantly share code, notes, and snippets.

@entzik
Created January 31, 2017 16:35
Show Gist options
  • Save entzik/919b7775c9a28945a9a6188c220fdc86 to your computer and use it in GitHub Desktop.
Save entzik/919b7775c9a28945a9a6188c220fdc86 to your computer and use it in GitHub Desktop.
EnvObservation.java
public interface EnvObservation {
public long getTimestamp();
public void setTimeStamp(long timeStamp);
public double getTemperature();
public void setTemperature(double temperature);
public double getHumidity();
public void setHumidity(double humidity);
public double getWindSpeed();
public void setWindSpeed(double windSpeed);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment