//© A+ Computer Science  -  www.apluscompsci.com
//Name -
//Date -
//Class -
//Lab  -


import javax.swing.JFrame;

public class GraphicsExamples extends JFrame
{
	private static final int WIDTH = 800;
	private static final int HEIGHT = 600;

	public GraphicsExamples()
	{
		super("Graphics Examples");
		
		setSize(WIDTH,HEIGHT);

		// getContentPane() controls which class draws on our screen
		getContentPane().add(new GraphicsWindow());		
		
		setVisible(true);
	}
	
	public static void main( String args[] )
	{
		GraphicsExamples run = new GraphicsExamples();
	}
}