Guest User

Untitled

a guest
Jul 29th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public static void main(String args[]) {
  2. EventQueue.invokeLater(new Runnable() {
  3.  
  4. @Override
  5. public void run() {
  6. new WorkTable().setVisible(true);
  7. }
  8. });
  9. }
  10.  
  11. public static void main(String args[]) {
  12. EventQueue.invokeLater(() -> {
  13. new WorkTable().setVisible(true);
  14. });
  15. }
Add Comment
Please, Sign In to add comment