@FXML TableColumn<Funcionario, Date> tdtnasc;
tdtnasc.setCellValueFactory(new PropertyValueFactory<Funcionario, Date>("dataNascimento"));
Ok, eu tento converter de Date para String, usando:
tdtnasc.setCellFactory(TextFieldTableCell.forTableColumn(new DateStringConverter()));
só que a ide acusa o seguinte erro no setCellFactory:
The method setCellFactory(Callback<TableColumn<Funcionario,Date>,TableCell<Funcionario,Date>>) in the type TableColumn<Funcionario,Date> is not applicable for the arguments (Callback<TableColumn<Object,Date>,TableCell<Object,Date>>)
Como faço pra editar agora?
public class Funcionario {
protected Date dataNascimento;
//contrutor
//Gets and Setters
}