Class SwingBugUtilities
- java.lang.Object
-
- org.pushingpixels.lafwidget.contrib.blogofbug.swing.SwingBugUtilities
-
public class SwingBugUtilities extends Object
Contains some utility methods applicable to any swing application.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
invokeAfter(Runnable execute, int after)
Runs the supplied class after a certain period of time, the thread will be executed in the EDT.
-
-
-
Method Detail
-
invokeAfter
public static void invokeAfter(Runnable execute, int after)
Runs the supplied class after a certain period of time, the thread will be executed in the EDT.- Parameters:
execute
- The runnable object whose method will be called after the specified delayafter
- The delay in ms before the event will be called
-
-