Advertisement
Guest User

Untitled

a guest
May 20th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. package zadatak09;
  2.  
  3. import java.awt.Color;
  4. import javax.swing.JFrame;
  5.  
  6. public class Zadatak09 extends JFrame {
  7.  
  8.  
  9. public static void main(String[] args) {
  10. new Zadatak09();
  11. }
  12.  
  13. public Zadatak09() {
  14.  
  15. setSize(500, 500);
  16.  
  17. setLocationRelativeTo(null);
  18.  
  19. getContentPane().setBackground(Color.GRAY);
  20.  
  21. setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.  
  23. setVisible(true);
  24.  
  25.  
  26.  
  27. }
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement