44 lines
1.0 KiB
Java
44 lines
1.0 KiB
Java
/*
|
|
============================================================
|
|
This is the "Blockeintrag" file from Author: Philipp Kotte
|
|
written on: 05 / 10 / 2023 at: 23:44
|
|
============================================================
|
|
*/
|
|
package Domain.Block;
|
|
|
|
public class Blockeintrag {
|
|
private int punkte;
|
|
private int stiche;
|
|
private int spielerId;
|
|
public Blockeintrag() {
|
|
|
|
}
|
|
|
|
public Blockeintrag(int punkte, int stiche) {
|
|
if(stiche < 0){
|
|
throw new IllegalArgumentException("Ihre Stiche dürfen nicht im Negativen bereich sein");
|
|
}
|
|
this.stiche = stiche;
|
|
this.punkte = punkte;
|
|
}
|
|
|
|
public int getPunkte() {
|
|
return this.punkte;
|
|
}
|
|
|
|
public int getStiche() {
|
|
return this.stiche;
|
|
}
|
|
|
|
public void setStiche(int stiche) {
|
|
if (stiche < 0){
|
|
throw new IllegalArgumentException("Ihre Stich dürfen nicht im Negative bereich sein");
|
|
}
|
|
this.stiche = stiche;
|
|
}
|
|
|
|
public void setPunkte(int punkte) {
|
|
this.punkte = punkte;
|
|
}
|
|
}
|