import java.awt.*;
//
//  	Class PolygonFrame creates a graphic context for the 
//      GraphicsPolygon class
//	@author CS100J - Fall 2000
// 	@version 1.0 2000.08.31

public class PolygonFrame extends Frame
{
	PolygonFrame ()
	{
		super("Polygon");
		setSize(500, 500);
		show();
	}
}


