As the title says: Somehow java can't find the PropertyValueFactory class, although it is in the system library (as seen in the picture at the link) and I've got no idea why. Other classes from that package are working, just this specific one doesn't... I'm using JDK 9.0.4 with Eclipse 4.7.3
import javafx.scene.control.cell.PropertyValueFactory;
module javafx.controls {
requires transitive javafx.base;
requires transitive javafx.graphics;
And here is module-info.class:
module javafx.controls {
requires transitive javafx.base;
requires transitive javafx.graphics;
exports javafx.scene.chart;
exports javafx.scene.control;
exports javafx.scene.control.cell;
exports javafx.scene.control.skin;
exports com.sun.javafx.scene.control to
javafx.web;
exports com.sun.javafx.scene.control.behavior to
javafx.web;
exports com.sun.javafx.scene.control.inputmap to
javafx.web;
exports com.sun.javafx.scene.control.skin to
javafx.graphics,
javafx.web;
}