Package ch.fork.AdHocRailway.ui.locomotives.configuration

Examples of ch.fork.AdHocRailway.ui.locomotives.configuration.LocomotiveConfigurationDialog


        public LocomotivesAction() {
            super("Locomotives\u2026", createImageIcon("locomotive.png"));
        }

        public void actionPerformed(ActionEvent e) {
            LocomotiveConfigurationDialog locomotiveConfigDialog = new LocomotiveConfigurationDialog(
                    AdHocRailway.this);
            if (locomotiveConfigDialog.isOkPressed()) {
                updateLocomotives();
                updateCommandHistory("Locomotive configuration changed");
            }
        }
View Full Code Here

TOP

Related Classes of ch.fork.AdHocRailway.ui.locomotives.configuration.LocomotiveConfigurationDialog

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.