Package Main

Source Code of Main.Main

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

/*
* Main.java
*
* Created on 12/04/2013
*
**
* @author Abdel
*/
package Main;

import JNew.gui.JNewFrame;


public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
       
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new JNewFrame().setVisible(true);
            }
        });
       
    }

}
TOP

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