System.setProperty("apple.laf.useScreenMenuBar", "true"); //$NON-NLS-1$ //$NON-NLS-2$
try {
SwingUtilities.invokeAndWait(new Runnable() {
//@Override
public void run() {
new MainGUI().setVisible(true);
}
});
} catch (InvocationTargetException ex) {
ex.printStackTrace();
} catch (InterruptedException ex) {