Package com.softuni.raxus.screens

Examples of com.softuni.raxus.screens.MenuScreen


  @Override
  public void actionPerformed(ActionEvent e) {
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.dispose();
    MenuScreen menuScreen = new MenuScreen();
  }
View Full Code Here


      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch (ClassNotFoundException | InstantiationException
        | IllegalAccessException | UnsupportedLookAndFeelException e) {
      e.printStackTrace();
    }
    MenuScreen startingScreen = new MenuScreen();
    startingScreen.createScreen();
  }
View Full Code Here

TOP

Related Classes of com.softuni.raxus.screens.MenuScreen

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.