だから私は自分のテーブルの列を編集しようとしています
gender.setText(beingEdited.getGender());
性別はaComboBox
で、エラーは
cannot find symbol
symbol: method setText(String)
location: variable gender of type JComboBox
----
(Alt-Enter shows hints)
どうすればこれを修正できますか? 前もって感謝します
代わりにsetValueAtを使用してください。はJComboBox
CellEditor
新しい値で更新されます
myTable.setValue(beingEdited.getGender(), row, column);