/* ============================================================ 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 } }