Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package ui;
  2.  
  3. import javax.swing.JFrame;
  4.  
  5. public class MiFrame extends JFrame {
  6.  
  7. public MiFrame(String titulo) {
  8. super(titulo);
  9. initUI();
  10. }
  11.  
  12. private void initUI() {
  13. setSize(600, 400);
  14. setLocationRelativeTo(null);
  15. setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement