Merge remote-tracking branch 'origin/master'

# Conflicts:
#	src/GebietsListe.java
This commit is contained in:
Jonas Nikolay 2022-12-09 14:43:56 +01:00
commit 8f0a176d97
3 changed files with 29 additions and 1 deletions

View File

@ -11,6 +11,7 @@ public class Gebiet {
this.name = name; this.name = name;
this.gesamtEinkommen = gesamtEinkommen; this.gesamtEinkommen = gesamtEinkommen;
this.durchschnittsEinkommen = durchschnittsEinkommen; this.durchschnittsEinkommen = durchschnittsEinkommen;
// lol
} }
public int getJahr() { public int getJahr() {

View File

@ -1,2 +1,28 @@
public class GebietsDatei { import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;
public class GebietsDatei extends GebietsListe {
private List<Gebiet> gebiete = new ArrayList<>();
public String dateiname;
public GebietsDatei(String dateiname) {
this.dateiname = dateiname;
}
public ArrayList<Gebiet> laden() {
try {
Path pfad = Paths.get(dateiname);
gebiete = new ArrayList<Gebiet>();
return gebiete;
}
catch (IOException e){
System.out.println("Die Datei kann nicht gelesen werden");
}
return gebiete;
}
} }

View File

@ -1,3 +1,4 @@
import java.util.List; import java.util.List;
public class GebietsListe { public class GebietsListe {