1 | Checkbox's are on-off toggles implemented as |
2 | add(new Checkbox("Red")); |
3 | add(new Checkbox("Green")); |
4 | add(new Checkbox("Blue"),null, true); |
5 | The first two are initially set to "false" as the optional third argument is not given. The last one is initially set to "true". |
6 | The state of a checkbox, i.e. whether it is checked, is given by the method, getState: |
7 | Checkbox cb = new Checkbox("Red"); |
8 | add (cb); |
9 | . . . |
10 | if (cb.getState()) . . .; |