/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package javaapplication27;

import javax.swing.JApplet;

/**
 *
 * @author Dzejna
 */
public class NewJApplet extends JApplet {

    /**
     * Initialization method that will be called after the applet is loaded
     * into the browser.
     */
    public void init() {
        // TODO start asynchronous download of heavy resources
    }

    // TODO overwrite start(), stop() and destroy() methods

}
