/* * NewApplet.java * * Created on September 8, 2004, 1:23 PM */ /** * * @author wu_staff */ public class NewApplet extends java.applet.Applet { /** Initialization method that will be called after the applet is loaded * into the browser. */ public void init() { // TODO start asynchronous download of heavy resources /* parle vous Francais */ System.out.println("Greetings"); } // TODO overwrite start(), stop() and destroy() methods }