Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. package com.aop.users.frames;
  2. import javax.swing.JFrame;
  3.  
  4. import com.aop.users.panels.AOPUserDatabasePanel;
  5.  
  6. public class AOPUsersDataBaseFrame {
  7. public static void main(String[] args){
  8.  
  9. JFrame frame = new JFrame("User Database");
  10. frame.add(new AOPUserDatabasePanel());
  11. frame.setSize(1000, 1000);
  12. frame.setLocationRelativeTo(null);
  13. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  14. frame.setVisible(true);
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement