Here you can find the source of runLater(Runnable runnable)
public static void runLater(Runnable runnable)
//package com.java2s; //License from project: Apache License import javax.swing.*; public class Main { public static void runLater(Runnable runnable) { SwingUtilities.invokeLater(runnable); }/*from w w w . j av a 2s .co m*/ }