import java.awt.*;
import javax.swing.*;

public class DrawVoorbeeld extends JFrame {

	public static void main(String args[]) {

		DrawVoorbeeld frame = new DrawVoorbeeld();
		frame.setSize(400,400);
		frame.show();
		//sluit het programma wanneer de gebruiker het frame sluit
		frame.setDefaultCloseOperation(EXIT_ON_CLOSE);

	}
}
