I am trying to create my first jx jxml project and at the initialization stage I am trying to set the factory cell value for a table column, e.g.
@FXML private void initialize() { agentId.setCellValueFactory(cellData -> cellData.getValue().getIdProperty()); .....}
and it is underlined in red and gives the error indicated in the header. Changing the language level in the project structure does not have an effect. What else could be causing the error?
UPD: I found that you need to install java with lambdas, which is not included in the official version. I did it, and yet it did not help. I downloaded it here
source share