Как создать условный CellValueFactory для TableView? - PullRequest
0 голосов
/ 05 октября 2018

У меня есть TableView со столбцом, который должен отображать одно из двух значений из моего объекта данных.

В MCVE ниже у меня есть объект Person, который может иметь или не иметьnickname собственность.Это nickname может быть либо заполнено, либо пусто, либо null.


Person.java:

import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;

public class Person {

    private IntegerProperty id = new SimpleIntegerProperty();
    private StringProperty firstName = new SimpleStringProperty();
    private StringProperty lastName = new SimpleStringProperty();
    private StringProperty nickname = new SimpleStringProperty();

    public Person(int id, String firstName, String lastName, String nickname) {
        this.id.set(id);
        this.firstName.set(firstName);
        this.lastName.set(lastName);
        this.nickname.set(nickname);
    }

    public int getId() {
        return id.get();
    }

    public IntegerProperty idProperty() {
        return id;
    }

    public void setId(int id) {
        this.id.set(id);
    }

    public String getFirstName() {
        return firstName.get();
    }

    public StringProperty firstNameProperty() {
        return firstName;
    }

    public void setFirstName(String firstName) {
        this.firstName.set(firstName);
    }

    public String getLastName() {
        return lastName.get();
    }

    public StringProperty lastNameProperty() {
        return lastName;
    }

    public void setLastName(String lastName) {
        this.lastName.set(lastName);
    }

    public String getNickname() {
        return nickname.get();
    }

    public StringProperty nicknameProperty() {
        return nickname;
    }

    public void setNickname(String nickname) {
        this.nickname.set(nickname);
    }
}

Main.java:

import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class Main extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) {

        // Simple Interface
        VBox root = new VBox(10);
        root.setAlignment(Pos.CENTER);
        root.setPadding(new Insets(10));

        // Build the simple TableView
        TableView<Person> tableView = new TableView<>();
        TableColumn<Person, String> colId = new TableColumn<>("ID");
        TableColumn<Person, String> colName = new TableColumn<>("Name");

        // Set the cell value factories
        colId.setCellValueFactory(new PropertyValueFactory<>("id"));
        colName.setCellValueFactory(new PropertyValueFactory<>("nickname"));

        // Add the column to the tableview
        tableView.getColumns().addAll(colId, colName);

        // Populate the tableview with a couple of samples
        tableView.getItems().addAll(
                new Person(1, "John", "Williams", null),
                new Person(2, "Marty", "McFly", "Chicken"),
                new Person(3, "Emmett", "Brown", "Doc"),
                new Person(4, "Hans", "Zimmer", "")
        );

        // Add the table to the scene
        root.getChildren().add(tableView);

        // Show the stage
        primaryStage.setScene(new Scene(root));
        primaryStage.setTitle("Sample");
        primaryStage.show();
    }
}

Мне нужен CellValueFactory, который будет использовать свойство nickname, если оно имеет значение, но полное имя и фамилию человека, если nickname пусто или равно нулю.

Как создать условное CellValueFactory? Я предполагаю, что это требует создания новой функции обратного вызова для фабрики, но я не уверен, как этоработы.

1 Ответ

0 голосов
/ 06 октября 2018

Когда @kleopatra намекает на , один из способов сделать это - создать условное связывание в cellValueFactory.Это делается с помощью Bindings.when(ObservableBooleanValue).

nameCol.setCellValueFactory(features -> {
  var firstName = features.getValue().firstNameProperty();
  var lastName  = features.getValue().lastNameProperty();
  var nickname  = features.getValue().nicknameProperty();

  return Bindings.when(nickname.isEmpty())
      .then(firstName.concat(" ").concat(lastName))
      .otherwise(nickname);
});

Привязка isEmpty() считает значения null пустыми.

Примечание. Если значение StringExpression равно null, оно считается пустым.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...