
Home
|
 
JAVA APPLET
As noted previously, check boxes and radio buttons
are both created with the same class, Checkbox, but radio buttons
are Checkboxes placed into a CheckboxGroup. In either case,
the interesting event is ItemEvent, for which you create an ItemListener.
When dealing with a group of check boxes or radio buttons, you have a
choice. You can either create a new inner class to handle the event for
each different Checkbox or you can create one inner class that
determines which Checkbox was clicked and register a single object
of that inner class with each Checkbox object.
The following example shows both approaches:


 |