Advertisement
virtualideaz

SimpleJFrame.java

Mar 26th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. public class SimpleJFrame extends JFrame{
  4.  
  5.        
  6.         public SimpleJFrame() {
  7.             setTitle("Simple Jframe Example");
  8.             setSize(200, 300);
  9.             setLocationRelativeTo(null);
  10.             setDefaultCloseOperation(EXIT_ON_CLOSE);
  11.             setVisible(true);
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement