WIZARD_PR2_DOP/Domain/Blockzeile.java

25 lines
553 B
Java
Raw Normal View History

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