Use new interface.
[jkeytool.git] / src / net / pterodactylus / jkeytool / main / Main.java
index 91b8eb5..9f4b477 100644 (file)
@@ -19,7 +19,9 @@
 
 package net.pterodactylus.jkeytool.main;
 
-import net.pterodactylus.jkeytool.gui.MainFrame;
+import net.pterodactylus.jkeytool.core.Core;
+import net.pterodactylus.jkeytool.gui.Interface;
+import net.pterodactylus.jkeytool.gui.swing.SwingInterface;
 import de.ina.util.version.Version;
 
 /**
@@ -41,6 +43,10 @@ public class Main {
                return VERSION;
        }
 
+       //
+       // VM ENTRY
+       //
+
        /**
         * JVM main entry method.
         *
@@ -48,8 +54,23 @@ public class Main {
         *            The command-line arguments
         */
        public static void main(String[] arguments) {
-               MainFrame mainFrame = new MainFrame();
-               mainFrame.show();
+               Core core = new Core();
+               Interface gui = getInterface();
+               core.addCoreListener(gui);
+               gui.start();
+       }
+
+       //
+       // PRIVATE METHODS
+       //
+
+       /**
+        * Returns the interface to use.
+        *
+        * @return The interface to use
+        */
+       private static Interface getInterface() {
+               return new SwingInterface();
        }
 
 }