com.github.rickyclarkson.swingflow.EDT Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swingflow Show documentation
Show all versions of swingflow Show documentation
A library to display and control workflows in Swing
package com.github.rickyclarkson.swingflow;
import javax.swing.SwingUtilities;
public @interface EDT {
public class Assert {
public static void onEdt() {
if (!SwingUtilities.isEventDispatchThread())
throw new IllegalStateException("Unsafe use of Swing code detected.");
}
}
}