Advertisement
Guest User

Untitled

a guest
Jan 16th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. package grafica;
  2.  
  3. import javax.swing.JFrame;
  4.  
  5. public class InterfaceGrafica {
  6.    
  7.     public static void main(String args[]) {
  8.        
  9.         JFrame w = new JFrame();
  10.         w.setTitle("JFrame - 1st Window");
  11.         w.setSize(350,150);
  12.         w.setLocation(50,50);
  13.         w.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  14.         w.setVisible(true);        
  15.        
  16.     }
  17.    
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement