java.awt
Class CheckboxGroup

java.lang.Object
  |
  +--java.awt.CheckboxGroup

public class CheckboxGroup
extends Object

This class is used to create a multiple-exclusion scope for a set of Checkbox buttons. For example, creating a set of Checkbox buttons with the same CheckboxGroup object means that only one of those Checkbox buttons will be allowed to be "on" at a time.


Constructor Summary
CheckboxGroup()
          Creates a new CheckboxGroup.
 
Method Summary
 Checkbox getCurrent()
          Gets the current choice.
 void setCurrent(Checkbox box)
          Sets the current choice to the specified Checkbox.
 String toString()
          Returns the String representation of this CheckboxGroup's values.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CheckboxGroup

public CheckboxGroup()
Creates a new CheckboxGroup.

Method Detail

getCurrent

public Checkbox getCurrent()
Gets the current choice.


setCurrent

public void setCurrent(Checkbox box)
Sets the current choice to the specified Checkbox. If the Checkbox belongs to a different group, just return.

Parameters:
box - the current Checkbox choice

toString

public String toString()
Returns the String representation of this CheckboxGroup's values. Convert to String.

Overrides:
toString in class Object