Package org.ifmo.clgp.view

Examples of org.ifmo.clgp.view.View


     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Settings.initProp();
        System.out.println(Settings.getProperty("partition.to.save.images"));
        final View view = new View();
        final Model model = new Model();
        final Controller controller = new Controller(view, model);
        new FileChecker().check();

        java.awt.EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                view.setVisible(true);
            }
        });
    }
View Full Code Here

TOP

Related Classes of org.ifmo.clgp.view.View

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.