Compare commits

...

2 Commits

Author SHA1 Message Date
cd1ec136a9 Merge remote-tracking branch 'origin/master' 2022-12-09 15:04:13 +01:00
ea7a52dcb3 MockGebietListe ergänzt 2022-12-09 15:04:06 +01:00

View File

@ -1,4 +1,14 @@
public class MockGebietListe
{
import java.util.ArrayList;
import java.util.List;
public class MockGebietListe implements ListenInterface
{
private ArrayList<Gebiet> gebiete = new ArrayList<>();
public void GebietsListe(List<Gebiet> gebiete){ }
public Gebiet getGebietMinDurchschnittsEinkommen() {return null;}
public Gebiet getGebietMaxAnzahlEinwohner() {return null;}
public int getAnzahlGesamt() {return 0;}
public int getAnzahlUnvollständig() {return 0;}
public List<Gebiet> getGebieteNachNamen(String namensanfang) {return gebiete;}
}