如何在继续执行第一个jFrame之前等待关闭一个新的不同jframe?

时间:2016-11-07 15:02:32

标签: java swing jframe

我有3个类调用按钮动作。调用一个类后,将出现一个新的jframe,用户必须完成一些日期。我想在用户关闭第二个jFrame之后调用第二个和第三个类。 问题(我欣赏任何建议)是如何在第一帧中实现一个“知道”何时关闭另一帧的动作?

 insertUser insertUserX=new insertUser(name,user,pass);
 new AddDates(xText1,xText2,xText3,xText4).setVisible(true);
    //here the second jFrame appears and i wouldd like to stop the executin until the frame is closed
 checkData xCheckData = new checkData(); 
 update xUpdate = new update(name, user, pass);

0 个答案:

没有答案