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; + } }