Search code examples
eclipsedialogjfacercp

How to make JFace PopupDialog blocks on open


I want to get value from PopupDialog, but PopupDialog is non blocking like other Dialogs which block on open.

Is there any way to deal with it?


Solution

  • PopupDialog extends the JFace Window class so you can call:

    setBlockOnOpen(true);
    

    to ask for blocking. Do this before calling the open() method.