This is mainly in regards to my question here, but I don't understand why Swing Utilities is needed and what it is used for. I'm designing a swing gui and I don't wanna miss out on anything that Swing Utilities might offer. Also could someone could explain what the invokeLater method does and how it works.

link|improve this question

1  
Check this question – JustYo Jun 14 '11 at 12:54
feedback

1 Answer

up vote 5 down vote accepted

As stated in the API, SwingUtilities is a collection of utility methods for Swing. In this case, it is needed to ensure that Swing components are created/modified in the Event Dispatch Thread, or EDT. Also, as stated in the API, invokeLater is used when an application thread needs to update the GUI.

You might also want to read up on Concurrency in Swing. Also, a More In-Depth Explanation of invokeLater.

link|improve this answer
does this mean anytime I do a pack(), or touch my frame that it should be inside a new Runnable()? – Grammin Jun 14 '11 at 13:05
1  
@Grammin, not necessarily. only if you're in a separate thread (i.e. one other than the EDT). Swing is not thread-safe, therefore all updates to Swing components should be placed on the EventQueue, which SwingUtilities enables you to easily do. – mre Jun 14 '11 at 13:05
1  
In many cases you change the properties of a frame or a component in an event listener. All event listener code runs on the EDT so you don't have to worry about this. If your application creates seperate threads, then you need to worry about this. – camickr Jun 14 '11 at 15:23
feedback

Your Answer

 
or
required, but never shown

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