vote up 1 vote down star

I've made a array full of JLabels and would like to add a listener to them.

The listener doesn't need to know exactly which one was clicked on, just that one was. Is there a way to add the listener to the whole array instead of using a 'for()' loop ?

Thanks for reading.

flag

3  
why you want to avoid using a for loop? Btw I don't think there are other ways.. – Jack Nov 7 at 15:42
dont be so mean to the for(). its there to help you. use it! – Omnipresent Nov 7 at 15:48
Well, if there was another way, it would make my code a lot lighter, so I was wondering. – Williwaw Nov 7 at 15:57
lighter? In what terms? a for loop is really simple in RTL instructions implementation.. – Jack Nov 7 at 16:16
Just add the listener upon JLabel creation!!! – Oscar Reyes Nov 7 at 16:26
show 2 more comments

5 Answers

vote up 3 vote down check

If your labels are added a to a container ( like a JPanel ) you can add a listener to this container and know which component is at certain location.

JPanel panel = new JPanel();
panel.addMouseListener( whichOneListener );
f.setContentPane( panel );

In this case I use a mouseListener because that give me the location where the user clicked.

private static MouseListener whichOneListener = new MouseAdapter() {
	public void mouseClicked( MouseEvent e ) {
		JComponent c = ( JComponent ) e.getSource();
		JLabel l  = ( JLabel ) c.getComponentAt( e.getPoint() );
		System.out.println( l.getText() );
	}

};

And prints correctly what component was clicked.

The full source code is here

link|flag
vote up 3 vote down

No there is no out of the box solution, AFAIK. Apart from using stupid hacks, I think you may have to use a for loop, and it may be a 10 line code, nothing to worry about.

link|flag
.. Apart from using stupid hacks.... Or you can learn the library you're using and the options it offers: stackoverflow.com/questions/1693436/… – Oscar Reyes Nov 7 at 16:55
vote up 2 vote down

You could wrap your array of JLabels in a class and implement your own Add() method which registers the listener upon adding them.

This way you wouldn't have to iterate over them afterwards..

link|flag
vote up 1 vote down

Yyou can register the listener on the JPanel (or whatever component the buttons are in) so you only have to write a single listener.

link|flag
1  
I don't think that jpanel supports ActionListeners.. – Jack Nov 7 at 15:45
vote up 0 vote down

If it was a list of JLabels, I'd suggest using CollectionUtils.forAllDo - method which allows you to apply same action to a bunch of objects.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.