Back to project page WineDB.
The source code is released under:
MIT License
If you think the Android project WineDB 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.selesse.android.winedb.model; //from w ww . j a v a 2s. co m public enum WineContextMenu { EDIT("Edit"), DELETE("Delete"); private final String itemName; private WineContextMenu(String itemName) { this.itemName = itemName; } @Override public String toString() { return itemName; } }