Reputation: 5213
I am using the JavaFX included in Java7u67. I have been trying to find the source code for FXMLLoader
here but it isn't there. However, in the JavaFX 8 source base there is a module called fxml
. Which fxml
is included in the Java7u67? Oacle says that Java7u67 includes JavaFX 2.2.67
but I cannot find that version of JavaFX.
Upvotes: 0
Views: 97
Reputation: 36742
Nothing is back ported from JavaFX 8 into JavaFX 2. It is also true for all versions of Java. All later versions have added functionality on the previous version (though some unwanted functionality may also be removed)
The most probable reason you can't find fxml in source of JavaFX 2 is because
JavaFX 2 is partially open-sourced
whereas
JavaFX 8 is completely open-sourced
FXML is present and will work in Oracle Java 7 as long as you have the runtime classpath for your application set up correctly.
Upvotes: 2