interface Gebiet

This commit is contained in:
Madeleine Vigier 2022-12-06 14:47:41 +01:00
parent 8fc55b3a35
commit c200188854

9
src/GebietInterface.java Normal file
View File

@ -0,0 +1,9 @@
public interface GebietInterface {
int getjahr();
int getSchüssel();
String getName();
long getGesamtEinkommen();
int getDurchschnittsEinkommen();
int getAnzahlEinwohner();
String toString();
}