View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   import java.io.File;
5   
6   
7   public interface SaverLoader {
8   
9   
10      void saveFile(File f);
11  
12      void loadFile(File f);
13  
14  
15  }
16