import java.awt.*;
import javax.swing.*;
import java.util.ArrayList;
import java.util.Iterator;
/**
 * Write a description of class MyDrawITJr here.
 * 
 * @author Michael Rivers
 * @version April 18th 2006
 */
public class MyDrawITJr extends DrawIT
{

    public void init()
    {
        super.init();
        
        shapeList.add(new MyCircle(100,50,30,Color.pink));
        shapeList.add(new MyOval(98,80,50,100,Color.blue));
        shapeList.add(new MyRectangle(130,90,55,15,Color.orange));
        shapeList.add(new MyRectangle(100,160,22,50,Color.magenta));
        shapeList.add(new MySquare(40,90,25,Color.yellow)); 
    }
}
