GebietInterface

This commit is contained in:
2022-12-02 14:33:21 +01:00
parent 89a9662279
commit 1f53698bc7
2 changed files with 14 additions and 0 deletions

8
src/GebietInterface.java Normal file
View File

@@ -0,0 +1,8 @@
public interface GebietInterface {
public int getJahr();
public int getSchlüssel();
public String getName();
public long getGesamtEinkommen();
public int getDurchschnittsEinkommen();
public int getAnzahlEinwohner();
}