Ultra Geile Studenten Benutzer Oberfläche (UGSBO)
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.

18 lines
376 B

  1. package com.ugsbo.auslandssemester;
  2. public class Sitzung {
  3. private String name;
  4. private String vorname;
  5. private int inMonaten;
  6. private String destination;
  7. // Konstruktor mit Übergabewerten
  8. public Sitzung(String nachname, String vor, int monate, String ziel) {
  9. this.name = nachname;
  10. this.vorname = vor;
  11. this.inMonaten = monate;
  12. this.destination = ziel;
  13. }
  14. }