Comment faire pour convertir une Application Swing à une Applet?

J'ai créé une application de bureau avec Swing Application Framework, maintenant comment puis-je convertir à une applet? La classe principale s'étend SingleFrameApplication.

ÉDITÉ: C'est la classe de départ, utilisé NetBeans GUI builder:

public class PhotoApp extends SingleFrameApplication {

    /**
     * At startup create and show the main frame of the application.
     */
    @Override protected void startup() {
        show(new PhotoView(this));
    }

    /**
     * This method is to initialize the specified window by injecting resources.
     * Windows shown in our application come fully initialized from the GUI
     * builder, so this additional configuration is not needed.
     */
    @Override protected void configureWindow(java.awt.Window root) {
    }

    /**
     * A convenient static getter for the application instance.
     * @return the instance of PhotoUploaderApp
     */
    public static PhotoApp getApplication() {
        return Application.getInstance(PhotoApp.class);
    }

    /**
     * Main method launching the application.
     */
    public static void main(String[] args) {
        launch(PhotoApp.class, args);
    }
}
Avez-vous été en mesure de comprendre cela?
Voir aussi ce approche hybride.

OriginalL'auteur fromvega | 2009-03-16