All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rickyclarkson.swingflow.EDT Maven / Gradle / Ivy

There is a newer version: 1.23
Show newest version
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.");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy