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