Package asta

Source Code of asta.App

/**
* A Students Text Analyzer
*/
package asta;

import asta.controller.AppController;
import asta.view.MainWindow;

/**
* Entry Point of the Java Swing Application
*
* @author andreas.pörtner
*/
public class App {

  /**
   * Starts the application and initializes the
   * Main window
   *
   * @param args not used in this scenario
   * @author andreas.pörtner
   */
  public static void main(String[] args) {
   
    AppController.getInstance().run(
        new MainWindow());
  }
}
TOP

Related Classes of asta.App

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.