Compare commits

..

No commits in common. "1c3b171002c38d8a67a62587362147a95d7eb86d" and "8af1ba46c66db3780e946cafa6537cc4ec015578" have entirely different histories.

2 changed files with 1 additions and 32 deletions

View File

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

View File

@ -1,32 +0,0 @@
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;
}
}