Search in sources :

Example 1 with Mainwindow

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);
    }
}
Also used : Mainwindow(mudmap2.frontend.Mainwindow) UnsupportedLookAndFeelException(javax.swing.UnsupportedLookAndFeelException)

Aggregations

UnsupportedLookAndFeelException (javax.swing.UnsupportedLookAndFeelException)1 Mainwindow (mudmap2.frontend.Mainwindow)1