The following class is used to demonstrate, how instances of classes can be created:
JavaFX 8
The annotation in Person(@NamedArg("name") String name) has to be removed, since the @NamedArg annotation is unavailable.
package fxml.sample;
import javafx.beans.NamedArg;
import javafx....