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; /* www. j a v a 2 s.c o m*/ import com.google.gson.annotations.SerializedName; public class Weather { public static final String ICON_URL_PREFIX = "http://openweathermap.org/img/w/"; public static final String ICON_URL_SUFFIX = ".png"; @SerializedName("description") private String description; @SerializedName("icon") private String icon; @SerializedName("id") private int id; @SerializedName("main") private String type; public String getDescription() { return description; } public String getIcon() { return icon; } public String getType() { return type; } }