Compare commits

...

2 Commits

Author SHA1 Message Date
1c3b171002 Merge remote-tracking branch 'origin/master' 2022-12-06 14:54:28 +01:00
1d231fcf99 Mock u interface 2022-12-06 14:54:20 +01:00
2 changed files with 32 additions and 1 deletions

View File

@ -5,5 +5,4 @@ public interface GebietInterface {
long getGesamtEinkommen();
int getDurchschnittsEinkommen();
int getAnzahlEinwohner();
}

32
src/GebietsMoc.java Normal file
View File

@ -0,0 +1,32 @@
public class GebietsMoc implements GebietInterface{
@Override
public int getjahr() {
return 0;
}
@Override
public int getSchüssel() {
return 0;
}
@Override
public String getName() {
return null;
}
@Override
public long getGesamtEinkommen() {
return 0;
}
@Override
public int getDurchschnittsEinkommen() {
return 0;
}
@Override
public int getAnzahlEinwohner() {
return 0;
}
}