Class SwingUtilities2
- java.lang.Object
-
- com.realtime.crossfire.jxclient.util.SwingUtilities2
-
public class SwingUtilities2 extends java.lang.ObjectUtility class for Swing related functions.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidinvokeAndWait(@NotNull java.lang.Runnable runnable)CallsSwingUtilities.invokeAndWait(Runnable)if not on the EDT or calls theRunnabledirectly if on the EDT.static voidinvokeLater(@NotNull java.lang.Runnable runnable)CallsSwingUtilities.invokeLater(Runnable)if not on the EDT or calls theRunnabledirectly if on the EDT.
-
-
-
Method Detail
-
invokeAndWait
public static void invokeAndWait(@NotNull @NotNull java.lang.Runnable runnable)CallsSwingUtilities.invokeAndWait(Runnable)if not on the EDT or calls theRunnabledirectly if on the EDT.- Parameters:
runnable- the runnable to call
-
invokeLater
public static void invokeLater(@NotNull @NotNull java.lang.Runnable runnable)CallsSwingUtilities.invokeLater(Runnable)if not on the EDT or calls theRunnabledirectly if on the EDT.- Parameters:
runnable- the runnable to call
-
-