Merge remote-tracking branch 'origin/master'
# Conflicts: # src/GebietsListe.java
This commit is contained in:
commit
8f0a176d97
@ -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() {
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class GebietsListe {
|
public class GebietsListe {
|
||||||
|
Loading…
Reference in New Issue
Block a user