Assignment #42 Boring Window

Code

    /// Name: DeeJay Cerezo
/// Period: 7
/// Program Name: Boring Window
/// File Name: Boring.java
/// Date Finished: 11/10/2015
 
    import javax.swing.*;
    
    public class Boring extends JFrame
    {
        public static void main ( String[] args )
        {
            JFrame f = new Boring();
            f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            f.setSize(300, 200);
            f.setVisible(true);
        }
    }
 

Picture of the output

Assignment 42