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