]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.acorn/src/org/simantics/acorn/Persistable.java
MainProgram polls nanoTime too often
[simantics/platform.git] / bundles / org.simantics.acorn / src / org / simantics / acorn / Persistable.java
1 package org.simantics.acorn;
2
3 import java.io.IOException;
4 import java.nio.file.Path;
5
6 import org.simantics.acorn.exception.AcornAccessVerificationException;
7 import org.simantics.acorn.exception.IllegalAcornStateException;
8
9 public interface Persistable {
10         
11         void toFile(Path path) throws IOException ;
12         void fromFile(byte[] data) throws IllegalAcornStateException, AcornAccessVerificationException;
13         
14 }