Class Main
- java.lang.Object
-
- javafx.application.Application
-
- Main
-
public class Main extends javafx.application.ApplicationThis is the driver class that runs the program and sets up the screen.- Author:
- Jairo Garciga
-
-
Constructor Summary
Constructors Constructor Description Main()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidmain(java.lang.String[] args)Launches the program.voidstart(javafx.stage.Stage primaryStage)start creates the screen according to the saved sizes and also sets up the css.
-
-
-
Method Detail
-
main
public static void main(java.lang.String[] args)
Launches the program.- Parameters:
args- Command Line arguments.
-
start
public void start(javafx.stage.Stage primaryStage) throws java.lang.Exceptionstart creates the screen according to the saved sizes and also sets up the css.- Specified by:
startin classjavafx.application.Application- Parameters:
primaryStage- The main stage/screen of the program.- Throws:
java.lang.Exception- Thrown if bad size or css calls.
-
-