add: GebietsDateiInterface

This commit is contained in:
Johannes Kantz 2022-12-09 14:10:55 +01:00
parent 3f42a3aca5
commit f85e17a726
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
import java.util.ArrayList;
public interface GebiesDateiInterface {
ArrayList<Gebiet> getGebiete();
}

View File

@ -2,7 +2,7 @@ import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
public class GebietsDatei {
public class GebietsDatei implements GebiesDateiInterface {
private String dateiName;