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.

Kontakt.java 488B

12345678910111213141516171819202122232425
  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.model;
  7. /**
  8. *
  9. * @author nobody
  10. */
  11. public class Kontakt
  12. {
  13. public String name;
  14. public String wohnort;
  15. public String strasse;
  16. public Kontakt(String name, String wohnort, String strasse)
  17. {
  18. this.name = name;
  19. this.wohnort = wohnort;
  20. this.strasse = strasse;
  21. }
  22. }