Back to project page example.
The source code is released under:
Apache License
If you think the Android project example 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 me.pratama.examplematerial.model; /*from ww w .j a va 2 s.c o m*/ /** * Created by pratama on 12/24/14. */ public class Singer { private int thumb; private String name; public Singer(int thumb, String name) { this.thumb = thumb; this.name = name; } public void setThumb(int thumb) { this.thumb = thumb; } public void setName(String name) { this.name = name; } public int getThumb() { return thumb; } public String getName() { return name; } }