57

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?

Trevor Reid
  • 3,310
  • 4
  • 27
  • 46
edgar
  • 679
  • 1
  • 5
  • 8

1 Answers1

79

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

Harry Joy
  • 58,650
  • 30
  • 162
  • 207