Compare commits

..

2 Commits

Author SHA1 Message Date
PBG2H21AEC 25ff282f27 Merge remote-tracking branch 'origin/master' 2022-12-09 14:53:18 +01:00
PBG2H21AEC a75a69163c GebietsInterface 2022-12-09 14:53:05 +01:00
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
public class Gebiet {
public class Gebiet implements GebietInterface{
private int jahr;
private int schluessel;
private String name;
+8
View File
@@ -0,0 +1,8 @@
public interface GebietInterface {
int getJahr();
int getSchlüssel();
String getName();
long getGesamtEinkommen();
int getDurchschnittsEinkommen();
int getAnzahlEinwohner();
}