Package org.jitterbit.ui

Examples of org.jitterbit.ui.UiThreadViolationException


     *            the name of the method that was called
     */
    public static void logIfNotOnEDT(Class<?> clazz, String method) {
        if (!EventQueue.isDispatchThread()) {
            ErrorLog.log(clazz, method + " should be called on the event-dispatching thread.",
                    new UiThreadViolationException());
        }
    }
View Full Code Here


     *            the name of the method that was called
     */
    public static void logIfOnEDT(Class<?> clazz, String method) {
        if (EventQueue.isDispatchThread()) {
            ErrorLog.log(clazz, method + " should not be called on the event-dispatching thread.",
                    new UiThreadViolationException());
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.UiThreadViolationException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.