Back to project page game_guess_lib.
The source code is released under:
MIT License
If you think the Android project game_guess_lib 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.wkmf.guess.lib.common.dialog; /*ww w. ja va 2 s . c om*/ import android.graphics.drawable.Drawable; public class DialogElement { private int id; private String title; private Drawable icon; private int amount; //constructores public DialogElement(){} public DialogElement(int id, String title, Drawable icon, int amount) { this.id = id; this.title = title; this.icon = icon; this.amount = amount; } // get/set public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public Drawable getIcon() { return icon; } public void setIcon(Drawable icon) { this.icon = icon; } public int getAmount() { return amount; } public void setAmount(int amount) { this.amount = amount; } }