Package VASSAL.tools.swing
Class EDT
java.lang.Object
VASSAL.tools.swing.EDT
public class EDT extends Object
A cover for the
ExecutorService
which submits to the Event
Dispatch Thread.- Since:
- 3.2.0
- Author:
- Joel Uckelman
-
Constructor Summary
Constructors Modifier Constructor Description protected
EDT()
-
Method Summary
Modifier and Type Method Description static void
execute(Runnable r)
static ExecutorService
getInstance()
static Future<?>
submit(Runnable task)
static <T> Future<T>
submit(Runnable task, T result)
static <T> Future<T>
submit(Callable<T> task)
static <T> EDTRunnableFuture<T>
submit(EDTRunnableFuture<T> task)
-
Constructor Details
-
EDT
protected EDT()
-
-
Method Details
-
getInstance
-
submit
-
submit
-
submit
-
submit
-
execute
-