Back to project page TheCompressYourFiles.
The source code is released under:
Apache License
If you think the Android project TheCompressYourFiles 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 th.watsize.menupopup; /*from w w w .j av a2 s .co m*/ import android.content.Intent; import android.graphics.drawable.Drawable; public class MenuItem { private int itemId; private String title; private Drawable icon; private Intent intent; public void setItemId(int itemId) { this.itemId = itemId; } public int getItemId() { return itemId; } public void setTitle(String title) { this.title = title; } public String getTitle() { return title; } public void setIcon(Drawable icon) { this.icon = icon; } public Drawable getIcon() { return icon; } public void setIntent(Intent intent) { this.intent = intent; } public Intent getIntent() { return intent; } }