Package com.softuni.raxus.listeners

Examples of com.softuni.raxus.listeners.AboutButtonListener


    JButton aboutButton = new JButton(Constants.ABOUT_BUTTON_LABEL);
    aboutButton.setAlignmentX(Component.CENTER_ALIGNMENT);
    aboutButton.setAlignmentY(Component.CENTER_ALIGNMENT);
    aboutButton.setFont(new Font("Tahoma", Font.CENTER_BASELINE, 18));
    aboutButton.setMargin(new Insets(10, 53, 10, 53));
    aboutButton.addActionListener(new AboutButtonListener(this,
        new AboutScreen()));
    return aboutButton;
  }
View Full Code Here

TOP

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

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.