/* Author: James Tam Version: 2015 Learing objectives: 1) Adding images to the display of a Java component (JButton) via the ImageIcon class. 2) Storing state information (number of presses) regarding the GUI. */ public class Driver { public static void main(String [] args) { MyFrame aFrame = new MyFrame(); aFrame.setVisible(true); } }