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 425B

123456789101112131415161718192021222324252627
  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 chatprogramm;
  7. /**
  8. * Builder Class
  9. * @author le
  10. */
  11. public class Start
  12. {
  13. public Start()
  14. {
  15. }
  16. /**
  17. * @param args the command line arguments
  18. */
  19. public static void main(String[] args)
  20. {
  21. new Start();
  22. }
  23. }