C:\Users\notebook\Documents\NetBeansProjects\CS2\src\gui\GUI8.java
 1 /*
 2  * GUI8 is like GUI7 except  that (1) the central region is a JTextArea in
 3  * place of the JPanel, and (2) the commands are different, and are processed
 4  * by simply displaying the name of the command in the central text area
 5  * (regardless of whether it was issued by clicking a button or by typing in
 6  * the southern text field).
 7  */
 8 package gui;
 9 
10 import frames.KFrame8;
11 import javax.swing.SwingUtilities;
12 
13 /**
14  *
15  * @author notebook
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