/**
 * A simple class to experiment with Swing graphics
 * @author bert
 */

import javax.swing.*;
import java.awt.*;

public class GraphicsTesterCustom {
	public static void main(String [] args)
	{
		JFrame frame = new JFrame();
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		
		frame.setLayout(new FlowLayout());
		frame.add(new MyComponent());
		
		frame.pack();
		frame.setVisible(true);	
	}
}
