I'm using the latest version of Java jdk1.8.0_65 with the latest version of Eclipse Neon. I'm reading an introduction into Java programming book and the author uses JavaFX code that my Eclipse does not detect.
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;
My IDE does not recognize any of these imports and the book just assumes my eclipse has them for some reason. How do I use JavaFX? Thanks in advance.