Advertisement
stoneman

AsocGlavna

May 29th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. import grafika.Prozor;
  4.  
  5.  
  6. public class AsocGlavna
  7. {
  8.  
  9.     public static void main(String[] args)
  10.     {
  11.         Prozor p = new Prozor();
  12.         p.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  13.         p.setResizable(false);
  14.         p.setVisible(true);
  15.     }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement