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.

Start.java 685B

1234567891011121314151617181920212223242526272829303132333435
  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 prfourgui;
  7. import controller.ControllerOeffnen;
  8. import prfourgui.View.AdressbuchView;
  9. /**
  10. * Builder Class
  11. * @author baumannan68085
  12. */
  13. public class Start
  14. {
  15. public Start()
  16. {
  17. AdressbuchView view = new AdressbuchView();
  18. ControllerOeffnen ctrlOeffnen = new ControllerOeffnen(view);
  19. ctrlOeffnen.registerEvents();
  20. view.setVisible(true);
  21. }
  22. /**
  23. * @param args the command line arguments
  24. */
  25. public static void main(String[] args)
  26. {
  27. new Start();
  28. }
  29. }