2023-10-05 23:49:36 +02:00
|
|
|
/*
|
|
|
|
============================================================
|
|
|
|
This is the "Blockeintrag" file from Author: Philipp Kotte
|
|
|
|
written on: 05 / 10 / 2023 at: 23:44
|
|
|
|
============================================================
|
|
|
|
*/
|
|
|
|
package Domain;
|
|
|
|
|
|
|
|
public class Blockeintrag {
|
|
|
|
public int punkte;
|
|
|
|
public int stiche;
|
2023-10-10 21:13:21 +02:00
|
|
|
|
|
|
|
public Blockeintrag() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public Blockeintrag(int punkte, int stiche) {
|
|
|
|
this.punkte = punkte;
|
|
|
|
this.stiche = stiche;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getPunkte() {
|
|
|
|
return this.punkte;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getStiche() {
|
|
|
|
return this.stiche;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setStiche(int stiche) {
|
|
|
|
this.stiche = stiche;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPunkte(int punkte) {
|
|
|
|
this.punkte = punkte;
|
|
|
|
}
|
|
|
|
|
2023-10-05 23:49:36 +02:00
|
|
|
}
|