Message
Message
@Override
public void start(Stage stage) throws Exception {
Label nameLabel = new Label("FullName:");
TextField textField = new TextField();
Label emailLabel = new Label("Email:");
TextField tfEmail = new TextField();
Label phoneLabel = new Label("Driving License ID:");
TextField tfPhone = new TextField();
{
detailsButton.setOnAction(event -> {
Car car = getItem();
if (car != null) {
showCarDetails(stage, car);
}
});
}
@Override
protected void updateItem(Car car, boolean empty) {
super.updateItem(car, empty);