jdk/src/share/classes/java/awt/CheckboxGroup.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1995-2004 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package java.awt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * The <code>CheckboxGroup</code> class is used to group together
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * a set of <code>Checkbox</code> buttons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Exactly one check box button in a <code>CheckboxGroup</code> can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * be in the "on" state at any given time. Pushing any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * button sets its state to "on" and forces any other button that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * is in the "on" state into the "off" state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * The following code example produces a new check box group,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * with three check boxes:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <hr><blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * setLayout(new GridLayout(3, 1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * CheckboxGroup cbg = new CheckboxGroup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * add(new Checkbox("one", cbg, true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * add(new Checkbox("two", cbg, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * add(new Checkbox("three", cbg, false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * </pre></blockquote><hr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * This image depicts the check box group created by this example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <img src="doc-files/CheckboxGroup-1.gif"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * alt="Shows three checkboxes, arranged vertically, labeled one, two, and three. Checkbox one is in the on state."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * ALIGN=center HSPACE=10 VSPACE=7>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * @author      Sami Shaio
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @see         java.awt.Checkbox
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @since       JDK1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
public class CheckboxGroup implements java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * The current choice.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * @see #getCurrent()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * @see #setCurrent(Checkbox)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    Checkbox selectedCheckbox = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * JDK 1.1 serialVersionUID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private static final long serialVersionUID = 3729780091441768983L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Creates a new instance of <code>CheckboxGroup</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    public CheckboxGroup() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Gets the current choice from this check box group.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * The current choice is the check box in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * group that is currently in the "on" state,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * or <code>null</code> if all check boxes in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * group are off.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @return   the check box that is currently in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     *                 "on" state, or <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @see      java.awt.Checkbox
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * @see      java.awt.CheckboxGroup#setSelectedCheckbox
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @since    JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    public Checkbox getSelectedCheckbox() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        return getCurrent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @deprecated As of JDK version 1.1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * replaced by <code>getSelectedCheckbox()</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    public Checkbox getCurrent() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        return selectedCheckbox;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * Sets the currently selected check box in this group
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * to be the specified check box.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * This method sets the state of that check box to "on" and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * sets all other check boxes in the group to be off.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * If the check box argument is <tt>null</tt>, all check boxes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * in this check box group are deselected. If the check box argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * belongs to a different check box group, this method does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * nothing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @param     box   the <code>Checkbox</code> to set as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     *                      current selection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * @see      java.awt.Checkbox
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * @see      java.awt.CheckboxGroup#getSelectedCheckbox
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @since    JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    public void setSelectedCheckbox(Checkbox box) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        setCurrent(box);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @deprecated As of JDK version 1.1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * replaced by <code>setSelectedCheckbox(Checkbox)</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    public synchronized void setCurrent(Checkbox box) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        if (box != null && box.group != this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        Checkbox oldChoice = this.selectedCheckbox;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        this.selectedCheckbox = box;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        if (oldChoice != null && oldChoice != box && oldChoice.group == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            oldChoice.setState(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        if (box != null && oldChoice != box && !box.getState()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            box.setStateInternal(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * Returns a string representation of this check box group,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * including the value of its current selection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @return    a string representation of this check box group.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        return getClass().getName() + "[selectedCheckbox=" + selectedCheckbox + "]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
}