package com.jedics;
import com.jedics.core.JediManager;
/**
* This class is the main entry point into the program. It has been created
* for the sole purpose of readability, so that users know where the program
* flow starts from.
*
* @author Abhishek Shroff
*
*/
public class Jedi {
/**
* Simply starts the {@link JediManager}
*
* @param argv Command line arguments unused for now.
*/
public static void main(String argv[]) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
new JediManager().start();
}
});
}
}