Lines Matching defs:doRun
1254 * Causes <i>doRun.run()</i> to be executed asynchronously on the
1273 * for example, from a JButton's ActionListener -- the <i>doRun.run()</i> will
1275 * Note that if the <i>doRun.run()</i> throws an uncaught exception
1289 public static void invokeLater(Runnable doRun) {
1290 EventQueue.invokeLater(doRun);
1295 * Causes <code>doRun.run()</code> to be executed synchronously on the
1298 * <code>doRun.run()</code> returns. This method should
1340 * <code>doRun.run()</code>
1342 * while running <code>doRun</code>
1346 public static void invokeAndWait(final Runnable doRun)
1349 EventQueue.invokeAndWait(doRun);