I have a Jtable that is populated with a linkedlist through an AbstractTableModel.
What I want to do is when I click (left-mouse click) on a row in the JTable, the linke
You can use the MouseClicked event:
MouseClicked
private void tableMouseClicked(java.awt.event.MouseEvent evt) { // Do something. }