Tabela JavaFX - como adicionar componentes?

Eu tenho um projeto de swing que usa muitos JTables para exibir todos os tipos de coisas de texto para painéis para uma mistura de botões e caixas de seleção. Consegui fazer isso sobrescrevendo o renderizador de célula da tabela para retornar JComponents genéricos. Minha pergunta é que uma tabela similar pode ser feita usando o JavaFx?

Eu quero atualizar todas as minhas tabelas no projeto para usar o JavaFx para suportar principalmente gestos. Parece que TableView é o componente JavaFx para usar e eu tentei adicionar botões a ele, mas quando exibido, ele mostra o valor da string do botão, não o botão em si. Parece que eu tenho que substituir a fábrica de linha ou a fábrica de células para fazer o que eu quero, mas não há muitos exemplos. Aqui está o código que usei como exemplo que exibe o botão como uma string.

import javax.swing.JButton;

import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.geometry.Insets;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.stage.Stage;

public class GestureEvents extends Application {

    private TableView<Person> table = new TableView<Person>();
    private final ObservableList<Person> data =
        FXCollections.observableArrayList(
            new Person("Jacob", "Smith", "[email protected]","The Button"),
            new Person("Isabella", "Johnson", "[email protected]","The Button"),
            new Person("Ethan", "Williams", "[email protected]","The Button"),
            new Person("Emma", "Jones", "[email protected]","The Button"),
            new Person("Michael", "Brown", "[email protected]","The Button")

        );

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage stage) {
        Scene scene = new Scene(new Group());
        stage.setTitle("Table View Sample");
        stage.setWidth(450);
        stage.setHeight(500);

        final Label label = new Label("Address Book");
        label.setFont(new Font("Arial", 20));

        table.setEditable(true);

        TableColumn firstNameCol = new TableColumn("First Name");
        firstNameCol.setMinWidth(100);
        firstNameCol.setCellValueFactory(
                new PropertyValueFactory<Person, String>("firstName"));

        TableColumn lastNameCol = new TableColumn("Last Name");
        lastNameCol.setMinWidth(100);
        lastNameCol.setCellValueFactory(
                new PropertyValueFactory<Person, String>("lastName"));

        TableColumn emailCol = new TableColumn("Email");
        emailCol.setMinWidth(200);
        emailCol.setCellValueFactory(
                new PropertyValueFactory<Person, String>("email"));

        TableColumn btnCol = new TableColumn("Buttons");
        btnCol.setMinWidth(100);
        btnCol.setCellValueFactory(
                new PropertyValueFactory<Person, String>("btn"));

        table.setItems(data);
        table.getColumns().addAll(firstNameCol, lastNameCol, emailCol, btnCol);

        final VBox vbox = new VBox();
        vbox.setSpacing(5);
        vbox.setPadding(new Insets(10, 0, 0, 10));
        vbox.getChildren().addAll(label, table);

        ((Group) scene.getRoot()).getChildren().addAll(vbox);

        stage.setScene(scene);
        stage.show();
    }

    public static class Person {

        private final SimpleStringProperty firstName;
        private final SimpleStringProperty lastName;
        private final SimpleStringProperty email;
        private final JButton btn;

        private Person(String fName, String lName, String email, String btn) {
            this.firstName = new SimpleStringProperty(fName);
            this.lastName = new SimpleStringProperty(lName);
            this.email = new SimpleStringProperty(email);
            this.btn = new JButton(btn);
        }

        public String getFirstName() {
            return firstName.get();
        }

        public void setFirstName(String fName) {
            firstName.set(fName);
        }

        public String getLastName() {
            return lastName.get();
        }

        public void setLastName(String fName) {
            lastName.set(fName);
        }

        public String getEmail() {
            return email.get();
        }

        public void setEmail(String fName) {
            email.set(fName);
        }

        public JButton getBtn(){
            return btn;
        }

        public void setBtn(String btn){

        }
    }

    public static class ButtonPerson{
        private final JButton btn;
        private ButtonPerson(){
            btn = new JButton("The Button");
        }
        public JButton getButton(){
            return btn;
        }
    }
}

Edit: Depois de investigar mais eu encontrei exemplos que substituem os gráficos de células usando tipos de células predefinidas, como texto e cheques. Não está claro se algum componente jfx genérico pode ser colocado em uma célula como um JFXPanel. Isso é diferente do JTable, já que usando um JTable eu posso colocar qualquer coisa que herda do JComponent desde que eu configure a classe de renderização corretamente. Se alguém souber como (ou se é possível) colocar um JFXPanel em uma célula ou outro componente genérico do JFx como um Button, isso seria muito útil.

questionAnswers(1)

yourAnswerToTheQuestion