私はJavaアプレットを書いています。アプレットに実際に保存されているコンテンツを含む新しいフレームを開きたい。ボタンから新しいフレームを開きます。
openInNew.addActionListener(new java.awt.event.ActionListener()
{
public void actionPerformed(ActionEvent e)
{
createDialog();
}
});
//this Function retrieves Frame for applet
public Frame getParentFrame( Component child )
{
Container c = child.getParent();
while ( c != null )
{
if ( c instanceof Frame )
{
return ( Frame ) c;
}
c = c.getParent();
}
return null;
}
private void createDialog()
{
Frame f=getParentFrame(openInNew); //openInNew is a button to Open a JDialog
frame = new AppletFrame("NEW FRAME",jContentPane);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.setVisible(true);
}
のコンストラクターは次のAppletFrame
とおりです。
public AppletFrame(String string, JPanel jContentPane, Frame f) {
super(f,string);
this.setContentPane(jContentPane);
this.setSize(790, 650);
this.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
removeAll();
FileListViewer.destroyFrame();
}
});
}
public static void destroyFrame()
{
jContentPane= (JPanel) frame.getContentPane();
jContentPane.repaint(); /*this one should repaint the Applet View, but the result
* is still the same. jContentPane is not null,
* it is filled with acutal components. */
jContentPane.setVisible(true);
frame.dispose();
frame.setVisible(false);
frame=null;
}
私の問題はそれが参照であるため、オブジェクトjConentPane
を開くとすぐに、基本的なアプレットフレームに何も保存されません。AppletFrame
もう一度に設定したかったjContentPane
のFileListViewer
ですが、staticで非静的メソッドを参照できませんdestroyFrame()
。