I've recently imported one of my projects to another computer. It uses the same jdk(Java8u40) and IDE (Netbeans 8.0.2) as the previous machine. However, after I've imported the project, it appears that the TextFormatter class is missing. I'm not sure why it would be missing a single import from the same .jar file.
My imports:
import javafx.scene.control.TextFormatter;
import javafx.scene.control.TextFormatter.Change;
Error Message:
error: cannot find symbol import javafx.scene.control.TextFormatter;
symbol: class TextFormatter
location: package javafx.scene.control
Any help would be appreciated. Thank you.