我有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);