(boolean invokeInEdtNowOrLater)
| 53 | } |
| 54 | |
| 55 | public void update(boolean invokeInEdtNowOrLater) { |
| 56 | if (invokeInEdtNowOrLater) |
| 57 | FThreads.invokeInEdtNowOrLater(updateRoutine); |
| 58 | else |
| 59 | FThreads.invokeInEdtLater(updateRoutine); |
| 60 | } |
| 61 | |
| 62 | private final Runnable updateRoutine = new Runnable() { |
| 63 | @Override |
nothing calls this directly
no test coverage detected