// @topic T11681 Swing demo A8 -- GUI window with three radio buttons // @brief class SwingMain /** * @author ik */ package pckg; import javax.swing.*; import javax.swing.event.*; import javax.swing.border.*; import javax.swing.text.*; /** * Demo program for UI window with three radio buttons. */ public class SwingMain { /** * Main entry point into program */ public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } }); }//main public static void createAndShowGUI() { // Swing test FrameRadioButtons frame = new FrameRadioButtons("Radio Buttons Demo"); } //createAndShowGUI } //SwingMain