Mock u interface

This commit is contained in:
Madeleine Vigier 2022-12-06 14:54:20 +01:00
parent ea9efaeac7
commit 1d231fcf99
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;
}
}