Skip to content

Instantly share code, notes, and snippets.

@khannedy
Created October 9, 2011 14:30
Show Gist options
  • Select an option

  • Save khannedy/1273753 to your computer and use it in GitHub Desktop.

Select an option

Save khannedy/1273753 to your computer and use it in GitHub Desktop.
Mendeteksi Perubahan Baris JTable
jTableMahasiswa.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
public void valueChanged(ListSelectionEvent e) {
int selectedRow = jTableMahasiswa.getSelectedRow();
jTextFieldBaris.setText(String.valueOf(selectedRow));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment