C:\Users\notebook\Documents\NetBeansProjects\CS2\src\gui\GUI7.java |
1
2
3
4
5
6
7
8
9 package gui;
10
11 import frames.KFrame7;
12 import javax.swing.SwingUtilities;
13
14
15
16 @author
17
18 public class GUI7 {
19
20
21 @param args
22
23 public static void main(String[] args) {
24 SwingUtilities.invokeLater(new ThreadForGUI());
25 }
26
27 private static class ThreadForGUI implements Runnable {
28
29 public void run() {
30 GUI7 gui = new GUI7();
31 }
32 }
33
34 public GUI7() {
35 KFrame7 frame = new KFrame7("GUI 7");
36 }
37
38 }
39