/* * JGreeting.java * * Created on 21 April 2005, 21:11 */ import javax.swing.*; import java.awt.*; /** * * @author briggsj */ public class JGreeting extends JApplet { /** Creates a new instance of JGreeting */ public JGreeting() { } public void paint(Graphics g) { g.drawString("Hello World", 50, 50); } }