1  import javax.swing.JFrame;
  2  
  3  public class EmptyFrameViewer
  4  {
  5     public static void main(String[] args)
  6     {
  7        JFrame frame = new JFrame();
  8        frame.setSize(300, 400);
  9        frame.setTitle("An empty frame");
 10        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 11        frame.setVisible(true);
 12     }
 13  }