package org.simantics.acorn; import java.io.IOException; import java.nio.file.Path; public interface Persistable { void toFile(Path path) throws IOException ; void fromFile(byte[] data); }