]> gerrit.simantics Code Review - simantics/platform.git/blob - acorn/Persistable.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / acorn / Persistable.java
1 package org.simantics.acorn;
2
3 import java.io.IOException;
4 import java.nio.file.Path;
5
6 public interface Persistable {
7         
8         void toFile(Path path) throws IOException ;
9         void fromFile(byte[] data);
10         
11 }