6937e91dd1a36423a2ff453374736bc0c5e33605
[Persons_Comparator.git] / src / Main.java
1 public class Main {
2
3 public static void main(String[] args) {
4 //Schedule a job for the event-dispatching thread:
5 //creating and showing this application's GUI.
6 String programName = "Person Comparator";
7
8
9 javax.swing.SwingUtilities.invokeLater(new Runnable() {
10 public void run() {
11 new MainWindowsView(programName).showGUI();
12 }
13 });
14 }
15 }