MockGebietListe ergänzt
This commit is contained in:
parent
c7defb02a6
commit
ea7a52dcb3
@ -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;}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user