1
0
Fork 0
WIZARD_PR2_DOP22/Domain/Blockzeile.java

26 lines
589 B
Java

/*
============================================================
This is the "Blockzeile" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:44
============================================================
*/
package Domain;
public class Blockzeile {
public int rundenNummer;
public Blockzeile(int rundenNummer) {
this.rundenNummer = rundenNummer;
}
public void addEintrag(Blockeintrag be) {
// TODO: Implementation
};
public Blockeintrag[] getDaten() {
// TODO: Implementation
return new Blockeintrag[0];
}
}