passivesEinkommen/src/GebietInterface.java

9 lines
243 B
Java
Raw Normal View History

2022-12-02 14:33:21 +01:00
public interface GebietInterface {
public int getJahr();
public int getSchlüssel();
public String getName();
public long getGesamtEinkommen();
public int getDurchschnittsEinkommen();
public int getAnzahlEinwohner();
}