Java_1/src/de/joethei/java1/zettel6/Vorlesung2.java

33 lines
573 B
Java

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;
}
}