JavaFX如何获取TableCell值类型以创建正确的单元工厂?

时间:2017-01-17 16:28:50

标签: java javafx tableview cell tablecolumn

为了向正确的单元工厂或单元工厂提供正确的转换器,我需要知道单元的值java类型。 无法弄清楚如何访问此信息,请帮助

@FXML
private TableColumn<PropertyAndValue, Object> propertyValueColumn;
...
propertyValueColumn.setCellFactory(new Callback<TableColumn<PropertyAndValue, Object>, TableCell<PropertyAndValue, Object>>() {
        @Override
        public TableCell<PropertyAndValue, Object> call(TableColumn<PropertyAndValue, Object> param) {
            Class cellValueClass = ??? // How to get value class ?                
            return new AcceptOnExitTableCell<PropertyAndValue, Object>();
        }
    });

0 个答案:

没有答案