You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Main.java 494B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package kontakte;
  7. import kontakte.view.View;
  8. /**
  9. * Builder Class
  10. * @author nobody
  11. */
  12. public class Main
  13. {
  14. public Main()
  15. {
  16. View v = new View();
  17. v.setVisible(true);
  18. }
  19. /**
  20. * @param args the command line arguments
  21. */
  22. public static void main(String[] args)
  23. {
  24. new Main();
  25. }
  26. }