import java.awt.*;
import javax.swing.*;

public class Simple extends JFrame {
    public Simple () {
	super("Super simple frame");

	setBounds(100, 150, 400, 100);

	setDefaultCloseOperation(EXIT_ON_CLOSE);
	setVisible(true);
    }

    static public void main(String[] args) { 
	new Simple ();
    }
}
