From ea7a52dcb3ad438e84c7b709de4be228bfdc06c1 Mon Sep 17 00:00:00 2001 From: pbg2h21ama Date: Fri, 9 Dec 2022 15:04:06 +0100 Subject: [PATCH] =?UTF-8?q?MockGebietListe=20erg=C3=A4nzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MockGebietListe.java | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/MockGebietListe.java b/src/MockGebietListe.java index 966b129..979a6de 100644 --- a/src/MockGebietListe.java +++ b/src/MockGebietListe.java @@ -1,4 +1,14 @@ -public class MockGebietListe -{ +import java.util.ArrayList; +import java.util.List; +public class MockGebietListe implements ListenInterface +{ + private ArrayList gebiete = new ArrayList<>(); + + public void GebietsListe(List gebiete){ } + public Gebiet getGebietMinDurchschnittsEinkommen() {return null;} + public Gebiet getGebietMaxAnzahlEinwohner() {return null;} + public int getAnzahlGesamt() {return 0;} + public int getAnzahlUnvollständig() {return 0;} + public List getGebieteNachNamen(String namensanfang) {return gebiete;} }