(final Runnable proc)
| 92 | } |
| 93 | |
| 94 | @Override |
| 95 | public void invokeInEdtAndWait(final Runnable proc) { |
| 96 | if (isGuiThread()) { |
| 97 | proc.run(); |
| 98 | } |
| 99 | else { |
| 100 | new WaitRunnable() { |
| 101 | @Override |
| 102 | public void run() { |
| 103 | proc.run(); |
| 104 | } |
| 105 | }.invokeAndWait(); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | private volatile Thread glThread; |
| 110 |
nothing calls this directly
no test coverage detected