I've been trying to familiarize myself with the use of SwingWorkers in Java. Is it possible to trigger a dialogue box to display from the GUI within a SwingWorker's process method?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
If you mean: a) inside doInBackground(),
b) inside done(),
c) or outside get()?
|
|||
|
|
|
yes is that possible by implements PropertyChangeListener(), there are two implementations (to avoids wrong implementations of methods)
|
|||
|
|
SwingWorkerAPI that shows you how this would be done, even though it's quite silly. – mre Jul 9 '11 at 0:02