private void runGUI() throws ClassNotFoundException, Exception {
Control.initSingletonWithView();
Control control = Control.getSingleton();
View view = View.getSingleton();
view.postInit();
view.getMainFrame().setExtendedState(Frame.MAXIMIZED_BOTH);
view.getMainFrame().setVisible(true);
view.setStatus("");
control.getMenuFileControl().newSession(false);
}