Back to project page UK-Weather-repo.
The source code is released under:
Apache License
If you think the Android project UK-Weather-repo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.haringeymobile.ukweather.data.objects; /*w w w. jav a 2 s . com*/ /** Common weather details, displayed on the screen. */ public interface WeatherInformation { public abstract String getDescription(); public abstract String getType(); public abstract String getIconName(); public abstract double getDayTemperature(TemperatureScale temperatureScale); public abstract double getHumidity(); public abstract double getPressure(); public abstract Wind getWind(); }