Assignemnt #42 Boring Window

Code

    Name: Iaroslav Titov
    Period: 7
    Project Name: Frame613
    File Name: Frame613.java
    Date: 10/21/2015
    
import javax.swing.*;

public class Frame613 extends JFrame
{
    public static void main()
    {
        JFrame f = new BoringWindow();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setSize(300,200);
        f.setVisible(true);
    }
}


    

Picture of the output

Assignment 39