/home/sjenks/NetBeansProjects/CS2/src/gui/GUI8.java
 1 /*
 2  * Gui8 is like GUI7 except that 
 3  * 1) the central region is a JTextArea in place of the JPanel, and 
 4  * 2) the commands are different, and are processed by simply displaying the 
 5  * name of the coommand in the central text area (reguardless of whether it was
 6  * issued by clikcing a button or by typing in the southern text field). 
 7  */
 8 package gui;
 9 
10 import frames.KFrame8;
11 import javax.swing.SwingUtilities;
12 
13 /**
14  *
15  * @author sjenks
16  */
17 public class GUI8 {
18 
19     /**
20      * @param args the command line arguments
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             GUI8 gui = new GUI8();
30         }
31     }
32 
33     public GUI8() {
34         KFrame8 frame = new KFrame8("GUI 8");
35     }
36 
37 }
38    
39   
40 
41