passivesEinkommen/src/GebietInterface.java

9 lines
201 B
Java
Raw Normal View History

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