Guest User

Untitled

a guest
Jan 24th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // Первая запись
  2. public static void main(String[] args){
  3. SwingUtilities.invokeLater(new Runnable() {
  4. @Override
  5. public void run() {
  6. new CreateUI();
  7. }
  8. });
  9. }
  10.  
  11. // Вторая запись
  12. public static void main(String[] args) {
  13. new CreateUI;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment