2000-07-12 05:32:07 +02:00
|
|
|
/* Copyright (C) 2000 Free Software Foundation
|
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
package java.awt;
|
|
|
|
|
2000-12-26 01:25:13 +01:00
|
|
|
import java.io.Serializable;
|
2000-07-12 05:32:07 +02:00
|
|
|
|
2000-12-26 01:25:13 +01:00
|
|
|
/** This class is used to groups checkbox components.
|
|
|
|
* @author Tom Tromey <tromey@redhat.com>
|
|
|
|
* @date December 25, 2000
|
|
|
|
*/
|
|
|
|
public class CheckboxGroup implements Serializable
|
2000-07-12 05:32:07 +02:00
|
|
|
{
|
2000-12-26 01:25:13 +01:00
|
|
|
// Current set checkbox.
|
|
|
|
Checkbox selectedCheckbox;
|
|
|
|
|
|
|
|
/** Create a new instance of CheckboxGroup. */
|
|
|
|
public CheckboxGroup ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns the currently selected checkbox in the group.
|
|
|
|
* @deprecated
|
|
|
|
*/
|
|
|
|
public Checkbox getCurrent ()
|
|
|
|
{
|
|
|
|
return getSelectedCheckbox ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns the currently selected checkbox in the group. */
|
|
|
|
public Checkbox getSelectedCheckbox ()
|
|
|
|
{
|
|
|
|
return selectedCheckbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set the selected checkbox.
|
|
|
|
* @deprecated
|
|
|
|
*/
|
|
|
|
public synchronized void setCurrent (Checkbox checkbox)
|
|
|
|
{
|
|
|
|
setSelectedCheckbox (checkbox);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Set the selected checkbox. */
|
|
|
|
public synchronized void setSelectedCheckbox (Checkbox checkbox)
|
|
|
|
{
|
|
|
|
if (checkbox != null && checkbox.group != this)
|
|
|
|
return;
|
|
|
|
|
|
|
|
selectedCheckbox.setState (false);
|
|
|
|
selectedCheckbox = checkbox;
|
|
|
|
if (checkbox != null)
|
|
|
|
checkbox.setState (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Return String representation of this class and current Checkbox. */
|
|
|
|
public String toString ()
|
|
|
|
{
|
|
|
|
return "[CheckboxGroup: " + selectedCheckbox + "]";
|
|
|
|
}
|
2000-07-12 05:32:07 +02:00
|
|
|
}
|