/home/sjenks/NetBeansProjects/CS2/src/gui/SV1.java |
1
2
3
4
5 package gui;
6
7 import frames.SV1Frame;
8 import javax.swing.SwingUtilities;
9
10
11
12 @author
13
14 public class SV1 {
15
16
17 @param args
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