如何从java中的另一个JFrame更新JFrame

时间:2013-12-08 19:54:57

标签: java swing jframe

我想从另一个JFrame更新JFrame。我有一个基本程序,它有两个相同的接口,具有相同的组名,我想知道如何编写程序,所以如果一个人更改组名,它将自动更改另一个。

提前致谢

第一个界面

Public String groupNam;
private void groupNActionPerformed(java.awt.event.ActionEvent evt) { 
interface2 interface2 = new interface2();                                      
    groupNam = groupN.getText(); 
interface2.group.equals(groupNam); //interface2 is the class name of the other interface
}

第二个界面

private void groupNameActionPerformed(java.awt.event.ActionEvent evt) {                                          
    groupName.getText().equals(groupNam); //calling the public string from interface 1 and placing it in groupName field
}

这是我的尝试但不起作用。

1 个答案:

答案 0 :(得分:3)

你听说过观察者模式吗?

这对你来说可能是对的。