Skip to content

Instantly share code, notes, and snippets.

@abbas-oveissi
Created March 1, 2016 13:15
Show Gist options
  • Save abbas-oveissi/05c3719956accb160f98 to your computer and use it in GitHub Desktop.
Save abbas-oveissi/05c3719956accb160f98 to your computer and use it in GitHub Desktop.
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