/* * NegoGUIApp.java */ package genius.gui; import org.jdesktop.application.SingleFrameApplication; /** * Starts up main panels. Do not use this. Use genius.Application to run the * application. */ public class NegoGUIApp extends SingleFrameApplication { public static NegoGUIView negoGUIView = null; /** * At startup createFrom and show the main frame of the application. */ @Override protected void startup() { negoGUIView = new NegoGUIView(this); show(negoGUIView); } /** * run the main application. FIXME gui stuff should be moved out of core. * * @param args * the arguments (command line run) */ public static void run(String[] args) { launch(NegoGUIApp.class, args); } }