posted 24 years ago
The JApplet adds support for the swing component architechture.
The difference b/w Applet and JApplet is as follows :
the JApplet has the JRootPane as the only child. Therefore any child that has to be added to JApplet should be added to it.
ex: applet.getContentPane().add(child).
whereas in applet u could directly add it to the applet
ex: applet.add(child).