use of mudmap2.frontend.Mainwindow in project mudmap2 by Neop.
the class Mudmap2 method main.
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
mwin = new Mainwindow();
mwin.setVisible(true);
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
Logger.getLogger(Mudmap2.class.getName()).log(Level.SEVERE, null, ex);
}
}
Aggregations