// A version of the HelloApplet applet that uses the Swing API from Java 2.
// Barry Cornelius, 20 June 2000
import java.awt.    Graphics;
import javax.swing. JApplet;
public class NewHelloApplet extends JApplet
{
   public void paint(final Graphics pGraphics)
   {
      pGraphics.drawString("Hello world", 50, 25);
   }
}
