Java Swing UI Thread Event edtInvokeLater(Runnable block)

Here you can find the source of edtInvokeLater(Runnable block)

Description

edt Invoke Later

License

Open Source License

Declaration

public static void edtInvokeLater(Runnable block) 

Method Source Code

//package com.java2s;
// Copyright 2011-2012 Paulo Augusto Peccin. See licence.txt distributed with this file.

import javax.swing.SwingUtilities;

public class Main {
    public static void edtInvokeLater(Runnable block) {
        SwingUtilities.invokeLater(block);
    }// w  w w.  j av a2 s  . co  m
}

Related

  1. doLater(final long milliseconds, final Runnable doThis)
  2. doLaterOnEventThread(Runnable task)
  3. doOnEventThreadAndWait(Runnable task)
  4. doSwing(Runnable r)
  5. edtExecutor()
  6. edtSmartInvokeAndWait(Runnable block)
  7. execute(Runnable command)
  8. executeInSwingThread(final Runnable code)
  9. executeRunnable(Runnable runnable)