| ComputerScience & Software Engineering |
| ||
|
TheaimofthislabistointroducetheSwingAPIforJavaGUIprogramming. The Swing classes andcomponents are contained in the javax.swingpackage hierarchy.
At the endof the lab, you will be able to evaluate user interfaces, modify agraphical user interface for the Customer Details program and implementbasic Swing GUIs in Java.
28 this.setVisible(true);
39 mButton = new JRadioButton();
40 fButton = new JRadioButton();
48 checkButton = new JButton("Check");
49 checkButton.setEnabled(true);
103 fButton.addItemListener(new ItemListener()...
109 fButton.addMouseListener(new MouseAdapter()...
123 mobileText.setActionCommand("mobile");
| ||
|
|