Use new interface.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 26 Jan 2009 23:24:08 +0000 (00:24 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 26 Jan 2009 23:24:08 +0000 (00:24 +0100)
src/net/pterodactylus/jkeytool/main/Main.java

index 22b4ec4..9f4b477 100644 (file)
@@ -20,7 +20,8 @@
 package net.pterodactylus.jkeytool.main;
 
 import net.pterodactylus.jkeytool.core.Core;
-import net.pterodactylus.jkeytool.gui.MainFrame;
+import net.pterodactylus.jkeytool.gui.Interface;
+import net.pterodactylus.jkeytool.gui.swing.SwingInterface;
 import de.ina.util.version.Version;
 
 /**
@@ -42,6 +43,10 @@ public class Main {
                return VERSION;
        }
 
+       //
+       // VM ENTRY
+       //
+
        /**
         * JVM main entry method.
         *
@@ -50,9 +55,22 @@ public class Main {
         */
        public static void main(String[] arguments) {
                Core core = new Core();
-               MainFrame mainFrame = new MainFrame(core);
-               core.addCoreListener(mainFrame);
-               mainFrame.show();
+               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();
        }
 
 }