Package com.softuni.raxus.listeners

Examples of com.softuni.raxus.listeners.StartButtonListener


        new MenuScreen()));

    // The text that the user entered.
    // Button that lets the user continue to the PlayScreen.
    JButton startButton = new JButton(Constants.START_BUTTON);
    startButton.addActionListener(new StartButtonListener(this,
        new PlayScreen()));

    panel.add(nameLabel, BorderLayout.LINE_START);
    panel.add(nameFirstPlayer, BorderLayout.LINE_START);
    panel.add(nameSecondPlayer, BorderLayout.LINE_START);
View Full Code Here

TOP

Related Classes of com.softuni.raxus.listeners.StartButtonListener

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.