reorganized storage of models

This commit is contained in:
2016-07-22 20:45:26 +02:00
parent 6e7c3226ab
commit 64d5000b62
14 changed files with 191 additions and 166 deletions

View File

@@ -32,6 +32,7 @@ import java.io.IOException;
/**
* read some file
*/
public interface FileReader {
public interface FileReader<E> {
E getContent();
void read(File filename) throws IOException;
}