Back to project page DrPermissions.
The source code is released under:
Apache License
If you think the Android project DrPermissions 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 ir.smartlab.permissions; /*from w ww . ja v a 2 s .c o m*/ import android.graphics.drawable.Drawable; public class ApplicationListItem { private long id; private Drawable icon; private String text; public ApplicationListItem(long id, Drawable icon, String text) { this.id = id; this.icon = icon; this.text = text; } public long getId() { return id; } public void setId(long id) { this.id = id; } public Drawable getIcon() { return icon; } public void setIcon(Drawable icon) { this.icon = icon; } public String getText() { return text; } public void setText(String text) { this.text = text; } }