I created a desktop application with Swing Application Framework, now how can I convert it to an applet? The main class extends SingleFrameApplication.
EDITED: This
Simplest thing is just to make a new outer class inheriting from JApplet, and instantiate the actual frame inside it.
Found a tutorial online that could help.