Question

I want to get all of the list selection listeners that are registered with the selection model in my JTable, but I don't see a method to get them. Is there a way I can retrieve them?

Était-ce utile?

La solution

  1. use the getSelectionModel() method on a new JTable
  2. cast the result to the DefaultListSelectionModel
  3. use the getListSelectionListeners()

hope it helps!

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top