Compare commits
2 Commits
0facc68e7e
...
cd1ec136a9
Author | SHA1 | Date | |
---|---|---|---|
cd1ec136a9 | |||
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