From 9c6592fbffbfdd9c29d83617f4d07a8aa9704552 Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 2 Dec 2022 15:07:08 +0100 Subject: [PATCH] GebietsListe Methoden --- src/GebietsListe.java | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/GebietsListe.java b/src/GebietsListe.java index 406110e..3e55705 100644 --- a/src/GebietsListe.java +++ b/src/GebietsListe.java @@ -1,3 +1,34 @@ -public class GebietsListe { +import java.util.ArrayList; +import java.util.List; +public class GebietsListe { + private List gebietListe = new ArrayList<>(); + + public GebietsListe(){ + this.gebietListe = gebietListe; + } + + public Gebiet getGebietMinDurchschnittEinkommen(){ + + return null; + } + + public Gebiet getGebietMaxEinwohner(){ + + return null; + } + + public int getAnzahlGesamt(){ + return 0; + } + + public int getAnzahlUnvollstaendig(){ + + return 0; + } + + public List getGebietNachNamen(String namensanfang){ + + return null; + } }