// CornerLinesTest.java // Use AS-IS to test CS 5JA assignment 3, parts 2a and 2b // updated by cmc, 1/24/09 import javax.swing.JFrame; public class CornerLinesTest { public static void main( String args[] ) { JFrame frame = new JFrame(); frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); frame.setSize( 300, 300 ); frame.setTitle( "CS 5JA assignment 3, part 2" ); frame.add( new CornerLines() ); // add new lines panel to the frame frame.setVisible( true ); } }