Back to project page dv-quiz.
The source code is released under:
Apache License
If you think the Android project dv-quiz 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.dvorakdev.lib; /*from w w w.j ava 2 s . c om*/ import android.content.Context; import android.widget.RadioButton; public class dvObjectRadioButton<T> extends RadioButton { private T object; public dvObjectRadioButton(Context context) { super(context); // TODO Auto-generated constructor stub } public T getObject() { return object; } public void setObject(T object) { this.object = object; this.setText(object.toString()); } }