import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Frame1 extends JFrame { JPanel pane = new JPanel(); Frame1() { super("My Simple Frame"); setBounds(100, 100, 300, 100); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Container con = this.getContentPane(); con.add(pane); // customiseations to be put here setVisibile(true); } public static void main(String args[]) { new Frame1(); } }