Package fr.soleil.utils.swingworker

Examples of fr.soleil.utils.swingworker.SwingWorker


        }
        else {
            System.out.println("Usage : [Counter] [Diffractometer]");
        }

        final SwingWorker worker = new SwingWorker() {
            Tumba application;

            public Object construct() {
                application = new Tumba();
                application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                application.setModel(model);
                application.getSplash().progress(3);
                application.getSplash().setVisible(false);
                application.setVisible(true);
                return application;
            }

            // Runs on the event-dispatching thread.
            public void finished() {
                application.setVisible(true);
            }
        };
        worker.start();
    }
View Full Code Here

TOP

Related Classes of fr.soleil.utils.swingworker.SwingWorker

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.