View Javadoc

1   package org.lcsim.conditions;
2   
3   import java.io.IOException;
4   import java.io.InputStream;
5   import java.io.Reader;
6   
7   /**
8    * 
9    * @author Tony Johnson
10   */
11  public interface RawConditions extends Conditions {
12      InputStream getInputStream() throws IOException;
13  
14      Reader getReader() throws IOException;
15  }