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