Tabellenauswahl verarbeiten

  • Beitrags-Autor:
  • Beitrags-Kategorie:Java
  • Beitrags-Kommentare:0 Kommentare

[code lang=“java“]jTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);

ListSelectionModel rowSM = jTable.getSelectionModel();
rowSM.addListSelectionListener(new ListSelectionListener() {
public void valueChanged(ListSelectionEvent e) {

if (e.getValueIsAdjusting()) return; // ignore extra messages

ListSelectionModel lsm = (ListSelectionModel) e.getSource();

if (lsm.isSelectionEmpty()) {
// no rows are selected
} else {
int selectedRow = lsm.getMinSelectionIndex();
}
}
});[/code]

Schreibe einen Kommentar

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.