1 import javax.swing.*; 2 3 public class MyFrame { 4 public static void main(String[] args) { 5 JFrame frame = new JFrame("MyFrame"); // Create a frame 6 frame.setSize(400, 300); // Set the frame size 7 frame.setLocationRelativeTo(null); // New since JDK 1.4 8 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 9 frame.setVisible(true); // Display the frame 10 } 11 }