import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class DrawVoorbeeld2 extends JFrame {

	private JButton button;
	private JPanel panel;

	public static void main(String args[]) {

		DrawVoorbeeld2 frame = new DrawVoorbeeld2();
		frame.setSize(400,400);
		frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
		frame.maakGUI();
		frame.show();

	}

	public void maakGUI() {

		Container window = getContentPane();
		window.setLayout(new FlowLayout());

	}
}


