package de.tudarmstadt.informatik.hostage.io; import java.io.IOException; import java.util.List; public interface ReaderWriter { T read() throws IOException; void write(List outputLine) throws IOException; }