/home/sjenks/NetBeansProjects/CS2/src/gui/SV2.java
 1 /*
 2  * SV2 is the second program in a sequence of "Squaresville" programs. This one 
 3  * refinds the stubs of the parrot in a way that resutls in a primitive sort of 
 4  * logo like system, but one in which the turle is reffered to as a robot. This 
 5  * system is primitive becasue its primitives are primitive, but also because 
 6  * 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 sjenks
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 
28         public void run() {
29             SV2 sv = new SV2();
30 
31         }
32     }
33 
34     public SV2() {
35         SV2Frame frame = new SV2Frame("Squresville");
36         frame.reset();
37     }
38 
39 }
40