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 linkedlist is search (in this case it contains movie titles) and displays the values in the linked list in Jtextboxes
How do I do this?
Here is the code
- GUI_g: http://pastebin.com/J3qtjn8J
- ProgramTableModel: http://pastebin.com/Dwkc9Cz3
- Processing: http://pastebin.com/qHnkvCbr
- Main: http://pastebin.com/K4yGYX9H
My guess it retrieve the data from the selected row into an array, split it, and put it into the jtextareas. How can I do this ?