Package com.jedics

Source Code of com.jedics.Jedi

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();
      }
    });
  }
}
TOP

Related Classes of com.jedics.Jedi

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.