| 28 | public class Worker implements Runnable |
| 29 | { |
| 30 | public static class Task implements Runnable { |
| 31 | public void work() {} /* The 'work' method will be executed on the background thread. */ |
| 32 | public void run() {} /* The 'run' method will be executed on the UI thread if work() did not throw any exception. */ |
| 33 | public void exception(final Throwable t) {} /* The 'exception' method will be executed on the UI thread if work() throws an exception. */ |
| 34 | } |
| 35 | |
| 36 | protected EventQueue eventQueue; |
| 37 | protected LinkedBlockingQueue<Task> queue; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…