SwingUtilities.invokeLater() vs EventQueue.invokeLater()
Asked Answered
R

1

59

Are there any differences between EventQueue.invokeLater() and SwingUtilities.invokeLater()?

Or is that the latter is just built on top of the former (with no modifications) for the sake of design?

Rellia answered 13/1, 2012 at 7:10 Comment(0)
I
82

No there is no difference.

SwingUtilities class was built to combine all general utility methods used in swing to be in one single class. Internally SwingUtilities.invokeLater() calls EventQueue.invokeLater()

1197    public static void invokeLater(Runnable   doRun) {
1198       EventQueue.invokeLater(doRun);
1199    }

Reference: http://kickjava.com/src/javax/swing/SwingUtilities.java.htm

Illiteracy answered 13/1, 2012 at 7:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.