package de.joethei.java1.zettel6; public class Vorlesung2 { private String titel; private int sws; public Vorlesung2(String titel, int sws) { this.titel = titel; this.sws = sws; } public String getTitel() { return titel; } public void setTitel(String titel) { this.titel = titel; } public int getSws() { return sws; } public void setSws(int sws) { this.sws = sws; } @Override public String toString() { return "Titel: " + titel + " SWS: " + sws; } }