I created a Modal Dialog by extending JDialog. As soon as setVisible(true) gets called code flow gets stuck at that point until the dialog gets dispose (as per expectation).
However i do not know/understand what happens to all the events already scheduled by using SwingUtilites.invokeLater()
, does these events also get hold up until modal dialog closes or they are independent and do get executed when the modal dialog is still open ?
Thanks in advance.