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