I created a PopupPanel and have shown it. I want to hide it after one minute has passed. During that one minute, the process should not be stopped or paused. Ho
PopupPanel
You could use Thread.sleep(60000);
Thread.sleep(60000);
But be careful you have to chose the correct thread to pause. And exception handling also has to be added.