Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can a mouselistener be added to a component say JLabel after the JLabel has been added to the frame or panel ? Or eventlistener has to be added before adding the component to the panel or frame.

share|improve this question
1  
Are you having trouble with this, or is it just a general question? Only limitation is that you have to create the components before you add listener to them or you will catch a NPE. But you can add or change listeners to components before or after they are added to a panel – John Snow Mar 9 '12 at 13:45

1 Answer

up vote 2 down vote accepted

The order shouldn't matter, since the user can't interact with the control until the current piece of code returns control to the system. Are you having trouble catching an event?

share|improve this answer
There was some trouble and I thought it might be because of the order. But you are correct order is immaterial. Problem was something else – John Watson Mar 9 '12 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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