Merge pull request 'Änderungen' (#27) from iss#6 into main

Reviewed-on: #27
Reviewed-by: Philipp Kotte <2211945@stud.hs-mannheim.de>
pull/29/head^2
Philipp Kotte 2023-10-11 16:59:37 +02:00
commit 3980ba1feb
3 changed files with 17 additions and 2 deletions

6
.gitignore vendored
View File

@ -4,5 +4,9 @@
# Object Data # Object Data
*.o *.o
# iml
*.iml
# Jar dateien # Jar dateien
/lib /lib
.idea

View File

@ -7,5 +7,12 @@ written on: 05 / 10 / 2023 at: 23:43
package Domain.Block; package Domain.Block;
public class Block { public class Block {
public void addZeile(){
}
public Blockzeile[] getDaten() {
return null;
}
//neues Kommentar
} }

View File

@ -10,6 +10,10 @@ public class Blockzeile {
private int rundenNummer; private int rundenNummer;
private Blockeintrag[] eintraege; private Blockeintrag[] eintraege;
public Blockzeile(){
}
public Blockzeile(int rundenNummer, int spielerAnzahl) { public Blockzeile(int rundenNummer, int spielerAnzahl) {
this.rundenNummer = rundenNummer; this.rundenNummer = rundenNummer;
this.eintraege = new Blockeintrag[spielerAnzahl]; this.eintraege = new Blockeintrag[spielerAnzahl];
@ -22,7 +26,7 @@ public class Blockzeile {
eintraege[i] = be; eintraege[i] = be;
} }
} }
}; }
public Blockeintrag[] getDaten() { public Blockeintrag[] getDaten() {
return eintraege; return eintraege;