Back to project page UltraExplorer.
The source code is released under:
GNU General Public License
If you think the Android project UltraExplorer 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.mirrorlabs.menupopup; //from w w w. ja v a 2s .c om 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; } }