import javax.swing.JFrame; /** This program displays the growth of an investment. */ public class Drawing { public static void main(String[] args) { WorkSpace workSpace = new WorkSpace(); JFrame frame = new DrawingFrame(workSpace); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // frame.setLocation(1225,150); frame.setLocation(1225,150); frame.setVisible(true); } }