Summary:
I am trying to populate a TableView with an ObservableList that contains objects of class "Contact" that have fields of type SimpleStringProperty.
Unfortunately it doesn't work. I get the error:
WARNING: Can not retrieve property 'firstName' in PropertyValueFactory: javafx.scene.control.cell.PropertyValueFactory@61e63bbc with provided class type: class sample.Datamodel.Contact
java.lang.RuntimeException: java.lang.IllegalAccessException: module javafx.base cannot access class sample.Datamodel.Contact (in module JavaFXChallengeContactList) because
at javafx.base/com.sun.javafx.property.PropertyReference.getProperty(PropertyReference.java:199)
at javafx.controls/javafx.scene.control.cell.PropertyValueFactory.getCellDataReflectively(PropertyValueFactory.java:182)
... and many more
I did extensive research on this topic. In many cases other people have not implemented the variableProperty() method in the class. But it is there.
I have made a method to create the columns, but other attempts (without it and putting the code directly in the initialize() method) also didn't work.
When I run the code, I get the table with the headers, but no data.
What is wrong here?
Thank you very much for your support!
Code in Contact Class:
public class Contact {
private SimpleStringProperty firstName;
private SimpleStringProperty lastName;
private SimpleStringProperty phoneNumber;
private SimpleStringProperty notes;
public Contact(SimpleStringProperty firstName, SimpleStringProperty lastName, SimpleStringProperty phoneNumber, SimpleStringProperty notes) {
this.firstName = firstName;
this.lastName = lastName;
this.phoneNumber = phoneNumber;
this.notes = notes;
}
public String getFirstName() {
return firstName.get();
}
public SimpleStringProperty firstNameProperty() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName.set(firstName);
}
... (other methods for lastName, phoneNumer and notes are identical)
Code in ContactData Class:
public class ContactData {
private ObservableList<Contact> contacts;
public ContactData() {
this.contacts = FXCollections.observableArrayList();
}
public void addContact(String fName, String lName, String phone, String notes) {
SimpleStringProperty firstName = new SimpleStringProperty(fName);
SimpleStringProperty lastName = new SimpleStringProperty(lName);
SimpleStringProperty phoneNumber = new SimpleStringProperty(phone);
SimpleStringProperty yourNotes = new SimpleStringProperty(notes);
this.contacts.add(new Contact(firstName, lastName, phoneNumber, yourNotes));
}
public ObservableList<Contact> getContacts() {
return contacts;
}
Code in Controller:
public class Controller {
@FXML
private TableView table;
public void initialize() {
ContactData contactDatabase = new ContactData();
contactDatabase.addContact("John", "Doe", "123", "Hi John");
contactDatabase.addContact("Peter", "Mustang", "321", "Hello Pete");
contactDatabase.addContact("Carl", "Mueller", "555", "Hey Carl");
TableColumn firstCol = setUpColumn("First Name","firstName");
TableColumn secondCol = setUpColumn("Last Name","lastName");
TableColumn thirdCol = setUpColumn("Phone Number","phoneNumber");
TableColumn lastCol = setUpColumn("Your Notes","notes");
table.setItems(contactDatabase.getContacts());
table.getColumns().addAll(firstCol, secondCol, thirdCol, lastCol);
}
public TableColumn setUpColumn(String columnName, String idInContact) {
TableColumn<Contact, SimpleStringProperty> column = new TableColumn<>(columnName);
column.setCellValueFactory(new PropertyValueFactory<>(idInContact));
return column;
}