aspose file tools
The moose likes Swing / AWT / SWT and the fly likes How to listen multiple JList? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "How to listen multiple JList?" Watch "How to listen multiple JList?" New topic
Author

How to listen multiple JList?

samifox
Greenhorn

Joined: Sep 03, 2001
Posts: 5
Hi Coders
Im developing a Swing GUI and I use a several JList in it. my class implements ListSelectionListener and in order Im overriding valueChanged().
I�ve no problems to detect one Jlist adjusting event but when its becomes to more then one JList the method valueChanged() effect to two Jlist ,
How can I listen to multiple Jlist in the same valueChanged ?
Thanks in advance
Shay
Manfred Leonhardt
Ranch Hand

Joined: Jan 09, 2001
Posts: 1492
Hi Samifox,
Just add the same class as the listener for each JList. Inside the valueChanged method just use the given object handle. The following code should work.

Enjoy,
Manfred.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: How to listen multiple JList?
 
Similar Threads
Drag and Drop from JList to JTree
JList
Multiple selection in JList while JGoodies bean binding.
JList valueChanged not recognizing DefaultListModel
Help me!!!