Back to project page Xbox360CollectorsPlace.
The source code is released under:
MIT License
If you think the Android project Xbox360CollectorsPlace 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.xboxcollectorsplace.bl.entities; //from www .j a v a2 s . c om /** * Entity used by the spinners to show a description (optionName) and store a code (optionKey) */ public class OptionString { //------------------------------------------------------------------------- VARIABLES*/ private String optionName; private String optionKey; //------------------------------------------------------------------------- CONSTRUCTORS*/ public OptionString(String optionName, String optionKey) { this.optionName = optionName; this.optionKey = optionKey; } //------------------------------------------------------------------------- GETTERS*/ public String getOptionName() { return this.optionName; } //------------------------------------------------------------------------- SETTERS*/ public String getOptionKey() { return this.optionKey; } }