Lines Matching refs:Checkbox
29 * a set of <code>Checkbox</code> buttons.
42 * add(new Checkbox("one", cbg, true));
43 * add(new Checkbox("two", cbg, false));
44 * add(new Checkbox("three", cbg, false));
50 * alt="Shows three checkboxes, arranged vertically, labeled one, two, and three. Checkbox one is in the on state."
54 * @see java.awt.Checkbox
62 * @see #setCurrent(Checkbox)
64 Checkbox selectedCheckbox = null;
85 * @see java.awt.Checkbox
89 public Checkbox getSelectedCheckbox() {
98 public Checkbox getCurrent() {
112 * @param box the <code>Checkbox</code> to set as the
114 * @see java.awt.Checkbox
118 public void setSelectedCheckbox(Checkbox box) {
124 * replaced by <code>setSelectedCheckbox(Checkbox)</code>.
127 public synchronized void setCurrent(Checkbox box) {
131 Checkbox oldChoice = this.selectedCheckbox;