How to Use Checkboxes?
public class TestCheckbox {
public static void main(String[] args){
Frame f = new Frame("TestCheckboxes");
CheckboxGroup cbg = new CheckboxGroup();
Checkbox cb1 = new Checkbox("Checkbox 1", cbg, false);
Checkbox cb2 = new Checkbox("Checkbox 2", cbg, false);
Checkbox cb3 = new Checkbox("Checkbox 3", cbg, true);