/*
* 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);
}
});
}
}