为了向正确的单元工厂或单元工厂提供正确的转换器,我需要知道单元的值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>();
}
});