Class SplashView
- java.lang.Object
-
- com.palmer.billingstatementgenerator.views.SplashView
-
public class SplashView extends java.lang.ObjectThe splash screen view displayed while the application initializes. Shows the Wright Funeral Home logo, application title, a progress bar, a status message label, and a copyright notice.
-
-
Constructor Summary
Constructors Constructor Description SplashView()Constructs the splash view and builds its content.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javafx.scene.ParentasParent()Returns the root node of the splash view for embedding in aScene.javafx.scene.control.ProgressBargetProgressBar()Returns the progress bar for binding to an initialization task's progress property.javafx.scene.control.LabelgetStatusLabel()Returns the status label for binding to an initialization task's message property.
-
-
-
Method Detail
-
asParent
public javafx.scene.Parent asParent()
Returns the root node of the splash view for embedding in aScene.- Returns:
- the root
Parentnode
-
getProgressBar
public javafx.scene.control.ProgressBar getProgressBar()
Returns the progress bar for binding to an initialization task's progress property.- Returns:
- the
ProgressBar
-
getStatusLabel
public javafx.scene.control.Label getStatusLabel()
Returns the status label for binding to an initialization task's message property.- Returns:
- the status
Label
-
-