/* * ======================================================== * File : AppletPeace.java * * This is the applet version of our first Java program * ======================================================== */ import java.applet.*; import java.awt.*; public class AppletPeace extends Applet { public void paint (Graphics g) { // Set the font for the graphic context g.setFont(new Font("Courier", Font.ITALIC, 18)); // Draw the appropriate String. g.drawString("Peace on Earth!", 25, 25); } }