1 |
Radio buttons are identical to Checkboxes but grouped so that only one checkbox in a group can be on at a time. They use same class for buttons but add CheckboxGroup class
|
2 |
CheckboxGroup cbg = new CheckboxGroup();
|
3 |
cb1 = new Checkbox("Red", cbg, false));
|
4 |
cb2 = new Checkbox("Green", cbg, false));
|
5 |
cb3 = new Checkbox("Blue", cbg, true));
|
6 |
add(cb1); add(cb2); add(cb3);
|
7 |
In addition to checking the state of checkboxes in a group, the method getCurrent returns the one checkbox which is on:
-
cb = cbg.getSelectedCheckbox();
|