I have 2 Controllers and I want to pass values from second controller to first controller, here are code sample:
    FXMLController.java
        private int paramAnswers;
        private int paramNotificationTime;
        private int paramNotificationDelay;
            @FXML
            private void handleMenuItemOptionsAction(ActionEvent event) throws IOException{
                Parent root = FXMLLoader.load(getClass().getResource("/fxml/Options.fxml")); // UNDECORATED*
                Scene scene = new Scene(root, Color.TRANSPARENT);
                final Stage stage = new Stage();
                stage.setTitle("Options");
                stage.setScene(scene);  
                stage.show();
        }
public void setOptionsParams(int paramAnswers, int paramNotificationTime, int paramNotificationDelay){
        this.paramAnswers = paramAnswers;
        this.paramNotificationTime = paramNotificationTime;
        this.paramNotificationDelay = paramNotificationDelay;
    }
and second controller:
    OptionsController.java
    private FXMLController parentController;
    private int paramAnswers;
        private int paramNotificationTime;
        private int paramNotificationDelay;
    @Override
        public void initialize(URL location, ResourceBundle resources) { 
    .... }
    @FXML
        private void handleButtonSaveAction(ActionEvent event) throws IOException{
            /*Pass these parameteres OptionsController parameters back to the FXMLController like parentController.setOptionsParams(paramAnswers, paramNotificationTime, paramNotificationDelay);
*/
(((Button)event.getSource()).getScene().getWindow())).close();
        } 
Arleady tried with parsing FXMLControler as .this into OptionsController initialize method, tried making listers and bunch of other resolved problems on stackoverflow but it just don't want work :< I need to pass that atributes back to FXMLController and close child window, so my main app would change behavior depending on passed values... :X For any help I will be grateful
 
     
    