* started with a right-click on plugin list on the desktop frontend
* (it.freedomotic.jfrontend plugin)
*/
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
MainGUI pluginGUI = new MainGUI(this);
pluginGUI.setVisible(true);
pluginGUI.setLocationRelativeTo(null);
bindGuiToPlugin(pluginGUI);
} catch (Exception ex) {
ex.printStackTrace();
}
}