C:\Users\notebook\Documents\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 public void run() {
28 SV2 sv = new SV2();
29 }
30 }
31
32 public SV2() {
33 SV2Frame frame = new SV2Frame("Squaresville");
34 }
35
36 }
37