1
0
Fork 0

Strukturerweiterung durch Klassen aus dem Klassendiagramm

main
Philipp Kotte 2023-10-05 23:49:36 +02:00
parent f3ebf265a8
commit d1d62502e0
11 changed files with 124 additions and 1 deletions

11
Domain/Block.java 100644
View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Block" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:43
============================================================
*/
package Domain;
public class Block {
}

View File

@ -0,0 +1,12 @@
/*
============================================================
This is the "Blockeintrag" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:44
============================================================
*/
package Domain;
public class Blockeintrag {
public int punkte;
public int stiche;
}

View File

@ -0,0 +1,24 @@
/*
============================================================
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
}
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Geschlecht" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:31
============================================================
*/
package Domain.Enums;
public enum Geschlecht {
}

View File

@ -8,5 +8,4 @@ package Domain.Enums;
public enum Kartenfarbe {
// Test
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Karte" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:28
============================================================
*/
package Domain.Karten;
public class Karte {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Magierkarte" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:41
============================================================
*/
package Domain.Karten;
public class Magierkarte extends Karte {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Narrenkarte" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:41
============================================================
*/
package Domain.Karten;
public class Narrenkarte extends Karte {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Zahlenkarte" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:30
============================================================
*/
package Domain.Karten;
public class Zahlenkarte extends Karte {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Kartenstapel" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:42
============================================================
*/
package Domain;
public class Kartenstapel {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Spieler" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:48
============================================================
*/
package Domain;
public class Spieler {
}