java.lang.Object
de.seggebaeing.sqlanalyzer.Main

public class Main extends Object
Conventional Java entry point for the SQL Analyzer application.

This class exists solely to decouple the App (which extends Application) from the static main method. This separation improves testability and avoids classpath issues in certain environments where the JavaFX runtime expects a non-Application class to host the main method.

Responsibilities:

  • Provide the public static void main(String[]) entry point required by the JVM.
  • Delegate to Application.launch(Class, String...) using App as the actual JavaFX application class.
Since:
1.0
Author:
Felix Seggebäing
See Also:
  • App
  • Application.launch(Class, String...)
  • Method Details

    • main

      public static void main(String[] args)
      Launches the SQL Analyzer JavaFX application.

      Delegates directly to Application.launch(Class, String...) with App as the target application class.

      Parameters:
      args - optional command line arguments passed to the application
      See Also:
      • App
      • Application.launch(Class, String...)