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.examplelayoutforandroiddev.entity; // w ww. j a v a 2s .co m /** * Created by pratama on 10/26/14. */ public class Soal { private String nomor; private int image; public Soal() { } public Soal(String nomor, int image) { this.nomor = nomor; this.image = image; } public String getNomor() { return nomor; } public void setNomor(String nomor) { this.nomor = nomor; } public int getImage() { return image; } public void setImage(int image) { this.image = image; } }