Package Main

Source Code of Main.ContactsMVC

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Main;

import Controller.ContactController;
import Model.ContactModel;
import View.FileView;


public class ContactsMVC {

 
    public static void main(String[] args) {
       
        ContactModel    model   = new ContactModel();
        FileView        fView   = new FileView(model);
       
        ContactController controller = new ContactController(model, fView);
       
        fView.setVisible(true);
    }
}    
TOP

Related Classes of Main.ContactsMVC

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.