/* * FIrstApplet.java * * Created on April 20, 2005, 8:41 PM */ /** * * @author levenick */ public class FIrstApplet 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 } public void paint(java.awt.Graphics g) { g.drawString("greetings", 0, 100); } // TODO overwrite start(), stop() and destroy() methods }