/* COSC 304 section 2
   LUKE BURGESS
   luke_burgess@hotmail.com
   @00205854
   Sept 17 2000 */

// Project 2: Exercise 3.16, page 111 from "Java How To Program", Deitel & Deitel

// Applet to demonstrate the drawRect and drawOval methods from the Graphics class

import javax.swing.JApplet;
import java.awt.Graphics;

public class Exercise16p111 extends JApplet {

   public void paint (Graphics g) {
      g.drawRect (25, 25, 200, 50);
      g.drawOval (25, 25, 200, 50);
   } // paint ()

} // class Exercise16p111
