/home/sjenks/NetBeansProjects/CS2/src/gui/SV1.java
 1 /*
 2  * SV1 is a variant of the GUI8. Like that, it is a "parrot" assignment. SV1 is 
 3  * the first program in a sequence of "SquaresVille" programs
 4  */
 5 package gui;
 6 
 7 import frames.SV1Frame;
 8 import javax.swing.SwingUtilities;
 9 
10 /**
11  *
12  * @author sjenks
13  */
14 public class SV1 {
15 
16     /**
17      * @param args the command line arguments
18      */
19     public static void main(String[] args) {
20         SwingUtilities.invokeLater(new ThreadForGUI());
21     }
22 
23     private static class ThreadForGUI implements Runnable {
24 
25         public void run() {
26             SV1 sv = new SV1();
27         }
28     }
29 
30     public SV1() {
31         SV1Frame frame = new SV1Frame("Squresville");
32     }
33 
34 }
35