// Copyright MageLang Institute; Version $Id: //depot/main/src/edu/modules/AWT11/magercises/RadioButtons/RadioButtons.java#2 $ import java.awt.*; import java.awt.event.*; public class RadioButtons extends java.applet.Applet implements ItemListener { TextField tf; public void init() { // create and add a Panel instance // add the label "Java is: " to the panel // creage a CheckboxGroup object // add a "Powerful" checkbox // register this object as the checkbox's listener // add an "Elegant" checkbox // register this object as the checkbox's listener tf = new TextField(40); tf.setEditable(false); add(tf); } public void itemStateChanged(ItemEvent e) { // set the text field to reflect the label } }