我在java项目JF1和JF2中有两个jinternalframe。
我创建了一个名为insert_in_JF1的类,现在我想通过传递一些参数从JF2调用这个类。
这可能吗?
这样的JF1,其中Insert是一个类,而InsertValues()是一个方法现在我想从JF2调用这个方法
public class Insert extends javax.swing.JInternalFrame {
public void InsertValues()
{
JOptionPane.showMessageDialog(this, "Working");
}
}