Back to project page mobius.
The source code is released under:
MIT License
If you think the Android project mobius 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.sgtcodfish.mobiusListing; /*ww w. j av a2 s . co m*/ /** * @author Ashley Davis (SgtCoDFish) */ public class Item { public enum ItemType { NONE, KEY; } private static final String DEFAULT_NAME = "UnnamedItem"; public String name = DEFAULT_NAME; public ItemType type = ItemType.NONE; public Item(String name, ItemType type) { this.name = name; this.type = type; } }