Klasse App
java.lang.Object
javafx.application.Application
com.currencycalc.currencycalculatorjavafx.App
public class App
extends javafx.application.Application
The main application class for the Currency Calculator.
This class initializes and launches the JavaFX application.
It sets up the main stage, loads the FXML layout, and applies the application icon.
- Version:
- 1.0.0
- Autor:
- Tim Platzer
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen javafx.application.Application
javafx.application.Application.Parameters
-
Feldübersicht
Von Klasse geerbte Felder javafx.application.Application
STYLESHEET_CASPIAN, STYLESHEET_MODENA
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Von Klasse geerbte Methoden javafx.application.Application
getHostServices, getParameters, getUserAgentStylesheet, init, launch, launch, notifyPreloader, setUserAgentStylesheet, stop
-
Konstruktordetails
-
App
public App()
-
-
Methodendetails
-
start
The entry point of the JavaFX application. This method is called automatically when the application is launched. It sets up the main stage, loads the FXML layout, and applies a custom application icon.- Angegeben von:
start
in Klassejavafx.application.Application
- Parameter:
stage
- The primary stage for this application.- Löst aus:
IOException
- If the FXML file cannot be loaded.
-
main
The main method serves as the entry point to the Java application. It launches the JavaFX application by calling thelaunch()
method.- Parameter:
args
- Command-line arguments passed to the application (not used).
-