Created
March 1, 2016 13:15
-
-
Save abbas-oveissi/05c3719956accb160f98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SpinnerDataHolder { | |
public String spinnerText; | |
public String value; | |
public SpinnerDataHolder( String spinnerText, String value ) { | |
this.spinnerText = spinnerText; | |
this.value = value; | |
} | |
public String toString() { | |
return spinnerText; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment