/home/sjenks/NetBeansProjects/CS2/src/gui/GUI9.java
 1 /*
 2  * GUI9 is like GUI 8 except tha the "stub functionality" is replaced by real 
 3  * functionality so that the systerm can produce and display real bits of 
 4  * computer science knowledge. 
 5  */
 6 package gui;
 7 
 8 import frames.KFrame9;
 9 import javax.swing.SwingUtilities;
10 
11 /**
12  *
13  * @author sjenks
14  */
15 public class GUI9 {
16 
17     /**
18      * @param args the command line arguments
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