C:\Users\notebook\Documents\NetBeansProjects\CS2\src\gui\SV2.java
 1 /*
 2  * SV2 is the second program in a sequence of "Squaresville" programs. This
 3  * one refines the stubs of the parrot in a way that results in a primitive 
 4  * sort of Logo like System, but one in which the turtle is refered to as a 
 5  * robot. This sytem is primitive because its primitives are primitive, but
 6  * also because it provides no mechanism for defining new commands.
 7  */
 8 package gui;
 9 
10 import frames.SV2Frame;
11 import javax.swing.SwingUtilities;
12 
13 /**
14  *
15  * @author notebook
16  */
17 public class SV2 {
18 
19     /**
20      * @param args the command line arguments
21      */
22     public static void main(String[] args) {
23         SwingUtilities.invokeLater(new ThreadForGUI());
24     }
25 
26     private static class ThreadForGUI implements Runnable {
27         public void run() {
28             SV2 sv = new SV2();
29         }
30     }
31 
32     public SV2() {
33         SV2Frame frame = new SV2Frame("Squaresville");
34     }
35 
36 }
37