1   package org.hedwig.core;
2   
3   import java.io.File;
4   
5   /***
6    * @author Keith Gaddis
7    *
8    * enclosing_type
9    */
10  public class PermanentFileStorage {
11  
12  	private File _archive;
13  	/***
14  	 * Constructor for PermanentFileStorage.
15  	 */
16  	public PermanentFileStorage() {
17  		super();
18  	}
19  
20  	public long save(byte[] data){
21  		return 0;
22  	}
23  	
24  	public byte[] load(long offset, long len){
25  		return null;
26  	}
27  }
This page was automatically generated by Maven