An Applet is a Panel. So wherever you can add a panel, you can add an applet. Why would you want to do it is another matter. Applets are special purpose Panels for Web pages.
The following compiles and executes:
<PRE> public static void main (
String[] args) {
Applet ap = new Applet();
Window w = new Window(new Frame() );
w.add(ap);
}
</PRE>