TITLE:JTableで行を選択

Posted by aterai at 2004-05-24

JTableで行を選択

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

  • &jnlp;
  • &jar;
  • &zip;
RowSelection.png

サンプルコード

table = new JTable(model);
table.setAutoCreateRowSorter(true);
table.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
  @Override public void valueChanged(ListSelectionEvent e) {
    if(e.getValueIsAdjusting()) return;
    int sc = table.getSelectedRowCount();
    changeInfoPanel((sc==1)?getInfo():" ");
  }
});
private String getInfo() {
  int index = table.convertRowIndexToModel(table.getSelectedRow());
  String name = (String)model.getValueAt(index, 1);
  String comment = (String)model.getValueAt(index, 2);
  return name+"( "+comment+" )";
}

解説

マウス、カーソルキー、タブキーでの選択状態の変更に対応するために、JTableにMouseListenerリスナーを設定するのではなく、JTable#getSelectionModelメソッドでListSelectionModelを参照し、このモデルにListSelectionListenerリスナーを追加して利用します。

ListSelectionEvent#getValueIsAdjusting()メソッドでイベントが重複処理を起こさないように制御しています。

コメント

  • ありがとう。助かります。 -- ごん
    • どうもです。 -- aterai