GebietsInterface

This commit is contained in:
Henrik Eckseler 2022-12-09 14:53:05 +01:00
parent d6685d8020
commit a75a69163c
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
public class Gebiet { public class Gebiet implements GebietInterface{
private int jahr; private int jahr;
private int schlüssel; private int schlüssel;
private String name; private String name;

8
src/GebietInterface.java Normal file
View File

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