package SE.liu.lysator.io; import java.io.IOException; public interface Persistent { void restore( ObjectInputStream stream ) throws IOException; void save( ObjectOutputStream stream ) throws IOException; };