Package Core

Source Code of Core.Driver

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

package Core;

import GUI.mainForm;
import javax.swing.JOptionPane;
import javax.swing.UIManager;

/**
*
* @author Amir
*/
public class Driver {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            mainForm mainWindow = new mainForm();
            mainWindow.setVisible(true);
        } catch (Exception ex) {
            JOptionPane.showMessageDialog(null,
                    "This system does not support your Operating System! Exiting now",
                    "WinSIS", JOptionPane.ERROR_MESSAGE);
            System.exit(1);
        }

       

           
           

           

       
           
        }





   
}
TOP

Related Classes of Core.Driver

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.