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
    Konstruktor
    Beschreibung
    App()
     
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    static void
    main(String[] args)
    The main method serves as the entry point to the Java application.
    void
    start(javafx.stage.Stage stage)
    The entry point of the JavaFX application.

    Von Klasse geerbte Methoden javafx.application.Application

    getHostServices, getParameters, getUserAgentStylesheet, init, launch, launch, notifyPreloader, setUserAgentStylesheet, stop

    Von Klasse geerbte Methoden java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Konstruktordetails

    • App

      public App()
  • Methodendetails

    • start

      public void start(javafx.stage.Stage stage) throws IOException
      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 Klasse javafx.application.Application
      Parameter:
      stage - The primary stage for this application.
      Löst aus:
      IOException - If the FXML file cannot be loaded.
    • main

      public static void main(String[] args)
      The main method serves as the entry point to the Java application. It launches the JavaFX application by calling the launch() method.
      Parameter:
      args - Command-line arguments passed to the application (not used).