[This question is in relation to this question]
Setting: I have this home-crafted \"editable label\" component which looks like a label, but when you cl
You can extend a JDialog, then when you init it,
this.setAlwaysOnTop(true); this.setModalityType(ModalityType.APPLICATION_MODAL); this.setVisible(false); this.setVisible(true);
It will only allow the JDialog to be interacted with and block everything else in the application.