package scheduler.view; import javafx.fxml.FXML; import scheduler.Main; public class ScheduleRatingController { // Reference to the main application. protected Main mainApp; /** * Initializes the controller class. This method is automatically called * after the fxml file has been loaded. */ @FXML private void initialize() { } /** * Is called by the main application to give a reference back to itself. * * @param mainApp */ public void setMainApp(Main mainApp) { this.mainApp = mainApp; } }