Java Swing UI Thread Event safeSwingCall(@Nonnull final Runnable runnable)

Here you can find the source of safeSwingCall(@Nonnull final Runnable runnable)

Description

safe Swing Call

License

Apache License

Declaration

public static void safeSwingCall(@Nonnull final Runnable runnable) 

Method Source Code

//package com.java2s;
/*/*w ww.  j a v a 2s . c  o  m*/
 * Copyright 2015 Igor Maznitsa.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import javax.annotation.Nonnull;

import javax.swing.SwingUtilities;

public class Main {
    public static void safeSwingCall(@Nonnull final Runnable runnable) {
        if (SwingUtilities.isEventDispatchThread()) {
            runnable.run();
        } else {
            SwingUtilities.invokeLater(runnable);
        }
    }
}

Related

  1. runOnSwingThread(Runnable run)
  2. runSafe(Runnable runnable)
  3. runTimer(int duration, final Runnable run)
  4. safeGUIRun(Runnable runnable)
  5. safelyRunBlockingRoutine(Runnable runnable)
  6. saveInvokeAndWait(Runnable run)
  7. throwIfNotOnEDT()
  8. toEDT(Runnable r, boolean wait)
  9. waitOnEDT(Runnable r)