Class SwingBugUtilities


  • public class SwingBugUtilities
    extends java.lang.Object
    Contains some utility methods applicable to any swing application.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private SwingBugUtilities()
      Creates a new instance of SwingBugUtilities
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static void invokeAfter​(java.lang.Runnable execute, int after)
      Runs the supplied class after a certain period of time, the thread will be executed in the EDT.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SwingBugUtilities

        private SwingBugUtilities()
        Creates a new instance of SwingBugUtilities
    • Method Detail

      • invokeAfter

        public static void invokeAfter​(java.lang.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 delay
        after - The delay in ms before the event will be called