Джош, преобразовать JFrame в JApplet очень просто.
Скажем, у вас есть такой JFrame:
public class MyApp extends JFrame {
.
.
public void initComponents() {
// components initialisation here
}
}
Этот класс легко может стать JApplet:
public class MyApp extends JApplet {
.
.
public void init() {
// components initialisation here
}
}
Обратите внимание на разницу - initComponents () стал init (), потому что апплетам нужен метод init ().