WIZARD_PR2_DOP/Domain/Karten/Karte.java

40 lines
643 B
Java
Raw Normal View History

/*
============================================================
This is the "Karte" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:28
============================================================
*/
package Domain.Karten;
2023-10-10 14:24:38 +02:00
public abstract class Karte {
2023-10-10 14:24:38 +02:00
// Statische Konstanten
2023-10-10 14:24:38 +02:00
// Statische Attribute
private int id;
2023-10-10 14:24:38 +02:00
// Attribute des Ojektes
// Konstruktoren
public Karte() {
}
public Karte(int id) {
this.id = id;
}
// Statische Methoden
2023-10-10 14:24:38 +02:00
// Getter und Setter
public int getId() {
return this.id;
}
2023-10-10 14:24:38 +02:00
// @Overrides
2023-10-10 14:24:38 +02:00
// Public Methoden (öffentliche Methoden)
2023-10-10 14:24:38 +02:00
// Private Methoden (Hilfsmethoden)
}