How can Swing dialogs even work?
Posted
by Bart van Heukelom
on Stack Overflow
See other posts from Stack Overflow
or by Bart van Heukelom
Published on 2010-06-12T13:38:19Z
Indexed on
2010/06/12
13:42 UTC
Read the original article
Hit count: 370
If you open a dialog in Swing, for example a JFileChooser, it goes somewhat like this pseudocode:
swing event thread { create dialog add listener to dialog close event { returnValue = somethingFromDialog } show dialog (wait until it is closed) return returnValue }
My question is: how can this possibly work? As you can see the thread waits to return until the dialog is closed. This means the Swing event thread is blocked. Yet, one can interact with the dialog, which AFAIK requires this thread to run.
So how does that work?
© Stack Overflow or respective owner