2

次のようなクラスがあります。

public class myClass{

int age;
String name;

public String toString(){
return name;

};
}

public static ObservableList<myClass> myClassList;

持つことができるのだろうか

ChoiceBox<myClass> choiceChart = new ChoiceBox<>(myClassList);

ありがとう

PS私は同様の状況を望んでいます

JavaFX 2 を使用した POJO のレンダリング

ただし、ChoiceBox を使用する

編集:

これが私の状況です。toString() メソッドを使用して、列の 1 つで myClass タイプのオブジェクトから String を設定する必要がある tableView があります。

これらのメソッドを使用しようとしました (myClass --> CustomInternalWindow クラス)

public static class Indicators{
      private final SimpleStringProperty tool_col;
      private final SimpleStringProperty chart_col;
      private final SimpleStringProperty pane_col;
      private final SimpleBooleanProperty on_col;

      private Indicators(String tl, CustomInternalWindow chrt, String pne, Boolean sel){
          this.tool_col = new SimpleStringProperty (tl);
          if (chrt == null) {
              this.chart_col = null;                  
          }
          else {
              this.chart_col = new SimpleStringProperty (chrt.toString());
          }
          this.pane_col = new SimpleStringProperty (pne);
          this.on_col = new SimpleBooleanProperty (sel);

      }
      public String getTool(){
          return tool_col.get();
      }
      public void setTool(String tl){
          tool_col.set(tl);
      }
...

public SimpleBooleanProperty onProperty() {
          return on_col;
      }
      public SimpleStringProperty toolProperty(){
          return tool_col;
      }
      public SimpleStringProperty chartProperty(){
          return chart_col;
      }
      public SimpleStringProperty paneProperty(){
          return pane_col;
      }
}  

  tablecolumnFrame.setCellFactory(new Callback<TableColumn<Indicators, CustomInternalWindow>, TableCell<Indicators, CustomInternalWindow>>(){
      @Override 
      public TableCell<Indicators, CustomInternalWindow> call(TableColumn<Indicators, CustomInternalWindow> param){
          TableCell<Indicators, CustomInternalWindow> cell = new TableCell<Indicators, CustomInternalWindow>(){

             @Override
             public void updateItem(CustomInternalWindow item, boolean empty) {
                    super.updateItem(item, empty);
                    if (item != null) {
                        ChoiceBox<CustomInternalWindow> choiceChart = new ChoiceBox<>(newprojectx.NewProjectXController.windowsPlotted);
                        choiceChart.setConverter(new CustomInternaWindowStringConverter());
                        choiceChart.getSelectionModel().select(item);
                        choiceChart.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<CustomInternalWindow>() {                                        
                                    @Override
                                    public void changed(
                                    final ObservableValue<? extends CustomInternalWindow> ov, final CustomInternalWindow oldValue, final CustomInternalWindow newValue) {
                                        if (!isEditing()) {
                                            final TableView table = getTableView();
                                            if (table != null) {
                                                table.edit(getTableRow().getIndex(), getTableColumn());
                                            }
                                        }
                                        commitEdit(newValue);
                                    }
                                });
                        setGraphic(choiceChart);
                    }
                }
            };             
            return cell;
      }
  });

しかし、windowsPlotted リストから文字列を表示することはできません

更新:私はまだこの問題に取り組んでいます。助けや提案をいただければ幸いです。

4

2 に答える 2

8

myClass インスタンスと ChoiceBox に表示される値との間で変換するStringConverterを指定できます。

これはsetConverter()メソッドで行われます。

例えば:

ChoiceBox<myClass> choiceChart = new ChoiceBox<>();
choiceChart.setConverter(new MyClassConverter());
choiceChart.setItems(myClassList);

class MyClassConverter extends StringConverter<myClass> {

  public myClass fromString(String string) {
    // convert from a string to a myClass instance
  }

  public String toString(myClass myClassinstance) {
    // convert a myClass instance to the text displayed in the choice box
  }
}
于 2013-10-31T15:18:48.540 に答える
0

確認してみてください: JavaFX ChoiceBox にデータベースからのデータを入力するにはどうすればよいですか?

https://gist.github.com/jewelsea/1422104

于 2013-10-31T15:02:26.820 に答える