forked from 2211945/WIZARD_PR2_DOP
Strukturerweiterung durch Klassen aus dem Klassendiagramm
parent
f3ebf265a8
commit
d1d62502e0
|
@ -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 {
|
||||
|
||||
}
|
|
@ -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;
|
||||
}
|
|
@ -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
|
||||
}
|
||||
|
||||
}
|
|
@ -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 {
|
||||
|
||||
}
|
|
@ -8,5 +8,4 @@ package Domain.Enums;
|
|||
|
||||
public enum Kartenfarbe {
|
||||
|
||||
// Test
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
||||
}
|
|
@ -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 {
|
||||
|
||||
}
|
|
@ -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 {
|
||||
|
||||
}
|
|
@ -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 {
|
||||
|
||||
}
|
|
@ -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 {
|
||||
|
||||
}
|
|
@ -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 {
|
||||
|
||||
}
|
Loading…
Reference in New Issue