// @topic T11687 Swing demo A8 -- GUI window with three radio buttons // @brief class GroupRadioButtonsListener implements ActionListener /** * @author ik */ package pckg; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; /** * Listens to the radio buttons */ class GroupRadioButtonsListener implements ActionListener { GroupRadioButtons mGroupRadioButtons; public GroupRadioButtonsListener(GroupRadioButtons grb) { mGroupRadioButtons = grb; } /** * Handles user clicks */ public void actionPerformed(ActionEvent event) { mGroupRadioButtons.actionPerformed(event); }//class: GroupRadioButtonsListener }