src/share/classes/java/awt/CheckboxGroup.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1995, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 89,98 **** --- 89,101 ---- public Checkbox getSelectedCheckbox() { return getCurrent(); } /** + * Returns the current choice from this check box group or {@code null} + * if none of checkboxes are selected. + * @return the selected checkbox * @deprecated As of JDK version 1.1, * replaced by <code>getSelectedCheckbox()</code>. */ @Deprecated public Checkbox getCurrent() {
*** 118,127 **** --- 121,134 ---- public void setSelectedCheckbox(Checkbox box) { setCurrent(box); } /** + * Sets the currently selected check box in this group + * to be the specified check box and unsets all others. + * @param box the {@code Checkbox} to set as the + * current selection. * @deprecated As of JDK version 1.1, * replaced by <code>setSelectedCheckbox(Checkbox)</code>. */ @Deprecated public synchronized void setCurrent(Checkbox box) {