
912 CHAPTER 12 Graphical User Interfaces
12.18.1 Multiple Choice Exercises
Questions 9,10,11,12,13,14,15
12.18.2 Reading and Understanding Code
Question 17
12.18.3 Fill In the Code
Questions 30,33,34,35,36,37,38,39,40,41
12.18.5 Debugging Area
Question 48
12.18.6 Write a Short Program
Questions 58,59,60,61,62
12.18.8 Technical Writing
Question 73
Skill Practice
with these end-of-chapter questions
97
98 private class ResetButtonHandler
99 implements ActionListener
100 {
101 public void actionPerformed( ActionEvent ae )
102 {
103 for ( int i = 0; i < gameLabels.length; i++ )
104 gameLabels[i].setVisible( true );
105 }
106 }
107
108 public static void main( String []args ...