/home/sjenks/NetBeansProjects/CS2/src/gui/GUI7.java
 1 /*
 2  * GUI7 is like GUI6 except that the buttons are now all placed 
 3  * in the northern region, a text field is placed in the soruthern region,
 4  * and the east and west regions are eliminated. Action commands
 5  * corresponding to the button names that are typed into the text area are 
 6  * interpreted as though buttons were pressed, except that case does not
 7  * matter. Also, random color functionality. 
 8  */
 9 package gui;
10 
11 import frames.KFrame7;
12 import javax.swing.SwingUtilities;
13 
14 /**
15  *
16  * @author sjenks
17  */
18 public class GUI7 {
19 
20     /**
21      * @param args the command line arguments
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