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 com.pratamawijaya.examplepallete.model; /* www. j a v a 2s . c om*/ /** * Created by pratama on 12/11/14. */ public class CoverItem { private String tilte; private int thumbnail; public CoverItem(String tilte, int thumbnail) { this.tilte = tilte; this.thumbnail = thumbnail; } public String getTilte() { return tilte; } public void setTilte(String tilte) { this.tilte = tilte; } public int getThumbnail() { return thumbnail; } public void setThumbnail(int thumbnail) { this.thumbnail = thumbnail; } }