vote up 0 vote down star

Given a JApplet, how do I obtain the JFrame object corresponding to this applet?

JApplet applet = this;
JRootPane rootPane = getRootPane();
Container contentPane = getContentPane();
JFrame jframe = ...; // How do I obtain the JFrame?
flag

trying to run an applet inside a JFrame? – Omry Oct 3 at 9:57
Omry: No, I have code that assumes access to a JFrame. I want this JFrame to be the "JApplet window". Creating a new JFrame won't work since that will create a new window. – knorv Oct 3 at 10:04

1 Answer

vote up 3 vote down check

You can create a new JFrame from an Applet. But there is no container like a JFrame surrounding an Applet. The Applet is ths container.

link|flag
IIRC, the plug-in does have an embedded JFrame, but this is just an implementation detail. Applet is considered the top-level container. – Tom Hawtin - tackline Oct 3 at 15:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.