GebietInterface

This commit is contained in:
Malte Schulze Hobeling 2022-12-02 14:33:49 +01:00
parent 1f53698bc7
commit f5ebd6469b

View File

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