Hi, I am rather new to Swing. I have a
java application which needs to pop up a dialog to capture certain user inputs. Till the dialog is closed, my caller method (say 'main') should block.
I tried to achieve that with SwingUtilities::invokeAndWait, but as I understand it only waits on Event Dispatch
Thread. My main method is run in non EDT. So it obviously does not wait.
So is there any other simple and decent way without getting into the business of threading.
Thanks
Venkata Madugundu