I have problem with SwingWorker and it's done() method. I have an application that supports plugins through SPI, so I basically can't change the behavior of the plugins. The interface these plugins have to implement contains method List<T> getContracts(). This is the method I am calling from SwingWorker's doInBackground() method. But some of the plugins use multiple threads in this getContracts() method. The problem is, that the done() method is then called before these threads finish. Is there a way to make SwingWorker thread not to finish (not to call it's done() method) until all the threads called from this SwingWorker stop?
Thanks for your help.

getContractsreturn the list when the threads are still running? UsuallydoInBackgroundwould wait until allgetContractsare done before exiting and callingdone. – toto2 Jun 20 '11 at 19:14SwingWorkercan finish before these threads – tom Jun 20 '11 at 19:48