java.lang.Object
ai.tutor.cab302exceptionalhandlers.SceneManager

public class SceneManager extends Object
Manages scene navigation and controller instantiation for the application.

Scene Manager is a singleton providing a centralized point for switching between different views in the JavaFX application. It uses a ControllerFactory to create controllers for each view.

Usage Example:

 SceneManager.getInstance().applicationInitialize(primaryStage);
 SceneManager.getInstance().navigateToAuth(AuthType.LOGIN);
 
Author:
Justin.
See Also: