2

配列リストを使用してjavafxでテーブルビューにデータを入力したい.モデルを使用したくない.テーブルビューにデータを入力するためのデータソースとして配列リストを作成したい.

Code:


List<Double> doubles = new ArrayList<Double>();
    doubles.add(12.12d);
    ObservableList<Double> names = FXCollections.observableArrayList(doubles);

    TableView table_view = new TableView<>(names);

    firstDataColumn.setCellFactory(?????);/// here the problem comes what is the cell factory in case of arraylist      
4

2 に答える 2