Package controller

Source Code of controller.Main

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

package controller;

import javax.swing.UIManager;
import view.ServidorView;

/**
*
* @author Consult
*/
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
         try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (Exception e) {
          
        }
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {               
                new ServidorView().setVisible(true);
            }
        });
    }

}
TOP

Related Classes of controller.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.