Advertisement
Guest User

Main

a guest
Jun 23rd, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3.  
  4. public class Main {
  5. public static void main(String ... args) {
  6.  
  7. Z53JTableDemo mainFrame = new Z53JTableDemo();
  8.  
  9. mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  10. mainFrame.pack();
  11. mainFrame.setLocationByPlatform(true);
  12. mainFrame.setVisible(true);
  13.  
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement