/home/sjenks/NetBeansProjects/CS2/src/gui/GUI7.java |
1
2
3
4
5
6
7
8
9 package gui;
10
11 import frames.KFrame7;
12 import javax.swing.SwingUtilities;
13
14
15
16 @author
17
18 public class GUI7 {
19
20
21 @param args
22
23 public static void main(String[] args) {
24 SwingUtilities.invokeLater(new ThreadForGUI());
25 }
26
27 private static class ThreadForGUI implements Runnable {
28 public void run() {
29 GUI7 gui = new GUI7();
30 }
31 }
32
33 public GUI7() {
34 KFrame7 frame = new KFrame7("GUI 7");
35 }
36
37 }
38