Is there a reason why the initialize method isn't called when specifing a controller factory (by calling FXMLLoader#setControllerFactory) instead of an instance of a controller (via FXMLLoader#setControllerFactory)? By "initialize" method I'm referring to any of the following:
public void initialize()
@FXML private void initialize()
@Override public void initialize(URL, ResourceBundle) /*as defined in the Initializable*/
Edited by: 951674 on Aug 8, 2012 12:27 PM