java.lang.Object
de.seggebaeing.sqlanalyzer.Main
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...)
usingApp
as the actual JavaFX application class.
- Since:
- 1.0
- Author:
- Felix Seggebäing
- See Also:
-
Method Summary
-
Method Details
-
main
Launches the SQL Analyzer JavaFX application.Delegates directly to
Application.launch(Class, String...)
withApp
as the target application class.- Parameters:
args
- optional command line arguments passed to the application- See Also:
-