| |
|
| java.lang.Object com.javujavu.javux.wings.ThreadUtils
All known Subclasses: com.javujavu.javux.wings.ThreadUtils12,
ThreadUtils | public class ThreadUtils implements ActionListener(Code) | | A collection of utility methods for switching to event thread.
This class is thread safe.
|
Inner Class :static class InvokeEvent extends ActionEvent | |
invokeAndWait | public static void invokeAndWait(Runnable r)(Code) | | Causes r.run() to be executed synchronously on the
AWT event dispatching thread. This call blocks until
r.run() returns.
|
invokeLater | public static void invokeLater(Runnable r)(Code) | | Causes r.run() to be executed asynchronously on the
AWT event dispatching thread.
|
isEventDispatchThread | public static boolean isEventDispatchThread()(Code) | | Returns true if the current thread is an AWT event dispatching thread.
|
|
|
|