SceneBuilder 2: Do controller classes need to necessarily be in the same folder as the view FXML files?
I'm loving JavaFX and SceneBuilder, but I just can't figure out how to make SceneBuilder link my FXML views with their Java controllers when they are not in the same folder. I'd just like to have this folder structure: package |-- model |-- view | |--someElementView.fxml | \--anotherElementView.fxml \-- control |--someElementController.java \--anotherElementController.java Instead I can only make SceneBuilder recognise my controllers if I have this folder structure which I'd like to avoid: package |-- model \-- view |--someElementView.fxml |--anotherElementView.fxml |--someElementController