Package application

Source Code of application.Main

package application;

import controller.Controller;
import model.Model;
import view.View;

import java.awt.EventQueue;

public class Main {


    public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
      public void run() {
        try {
          Model model = new Model();
          View view = new View(model);
                    new Controller(model, view);
         
        } catch (Exception e) {
          e.printStackTrace();
          System.exit(0);
        }
      }
    });
  }
}
TOP

Related Classes of application.Main

TOP
Copyright © 2018 www.massapi.com. 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.