Two Listeners on my JTable
I would like to use both the ListSelectionListener and MouseListener on my JTable. The problem I am running into is this:
I need the ListSelectionListener to return me a value from the row that is selected, but I only want that listener to fire if and only if my MouseListener notices a double click. Anyone have any idea on how to make these two listeners depended on each other.
Thanks in advanced. Sample code would be appreciated.

