概要

JTableで、行を選択した場合の動作をテストします。

サンプルコード

table = new JTable(model);
table.setAutoCreateRowSorter(true);
table.getSelectionModel().addListSelectionListener(e ->
  if (e.getValueIsAdjusting()) {
    return;
  }
  int sc = table.getSelectedRowCount();
  changeInfoPanel((sc == 1) ? getInfo() : " ");
});
// ...
private String getInfo() {
  int index = table.convertRowIndexToModel(table.getSelectedRow());
  String str = (String) model.getValueAt(index, 0);
  Integer idx = (Integer) model.getValueAt(index, 1);
  Boolean flg = (Boolean) model.getValueAt(index, 2);
  return String.format("%s, %d, %s", str, idx, flg);
}
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、マウス、カーソルキー、Tabキーでの選択状態の変更に対応するため、JTableMouseListenerリスナーを設定するのではなくJTable#getSelectionModelメソッドでListSelectionModelを参照し、このモデルにListSelectionListenerリスナーを追加しています。

  • ListSelectionEvent#getValueIsAdjusting()メソッドでイベントが重複処理を起こさないよう設定

参考リンク

コメント