Back to project page Instabackground.
The source code is released under:
Apache License
If you think the Android project Instabackground 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 es.expilu.instabackground.model; //w ww. j a v a2 s . com public class Images { private Image low_resolution; private Image thumbnail; private Image standard_resolution; public Image getLow_resolution() { return low_resolution; } public void setLow_resolution(Image low_resolution) { this.low_resolution = low_resolution; } public Image getThumbnail() { return thumbnail; } public void setThumbnail(Image thumbnail) { this.thumbnail = thumbnail; } public Image getStandard_resolution() { return standard_resolution; } public void setStandard_resolution(Image standard_resolution) { this.standard_resolution = standard_resolution; } }