I'm taking this Oracle tutorial and on the page about Anonymous classes. In it, is an example of a Say "Hello World" button.
I'm getting import javafx cannot be resolved errors.
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
What do I need to change in my Eclipse configuration to run this?