TableColumn candyName = new TableColumn("Candy Name");
candyName.setMinWidth(100);
candyName.setCellValueFactory(
new PropertyValueFactory<Candy, String>("candyName"));
TableColumn candyBrand = new TableColumn("Candy Brand");
candyBrand.setMinWidth(100);
candyBrand.setCellValueFactory(
new PropertyValueFactory<Candy, String>("candyBrand"));
TableColumn candyDescription = new TableColumn("Candy Description");
candyDescription.setMinWidth(200);
candyDescription.setCellValueFactory(
new PropertyValueFactory<Candy, String>("candyDescription"));
The last column, candyDescription, doesn't show up when I run the code, but the other two do show up. I'm just confused. Anyone have any ideas of what could be wrong?