/* * File: HelloWorld.java * Author: Java, Java, Java * Description: This applet displays "Hello World". */ import java.applet.Applet; // Import the Applet class import java.awt.Graphics; // and the Graphics class public class HelloWorld extends Applet // Class header { // Start of body public void paint(Graphics g) // The paint method { g.drawString("HelloWorld",10,10); } // End of paint } // End of HelloWorld