Use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; }
(final String label, final boolean active)
| 3221 | * Use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; } |
| 3222 | */ |
| 3223 | public static boolean radioButton(final String label, final boolean active) { |
| 3224 | return nRadioButton(label, active); |
| 3225 | } |
| 3226 | |
| 3227 | private static native boolean nRadioButton(String obj_label, boolean active); /*MANUAL |
| 3228 | auto label = obj_label == NULL ? NULL : (char*)env->GetStringUTFChars(obj_label, JNI_FALSE); |
no test coverage detected