Clover coverage report - brownies library - 1.0-beta-1
Coverage timestamp: 月 8 16 2004 17:14:42 GMT+09:00
file stats: LOC: 29   Methods: 0
NCLOC: 12   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
FileStreamFactory.java - - - -
coverage
 1   
 /*
 2   
  * Joey and its relative products are published under the terms
 3   
  * of the Apache Software License.
 4   
  */
 5   
 package org.asyrinx.brownie.core.io.sf;
 6   
 
 7   
 import java.io.File;
 8   
 import java.io.IOException;
 9   
 import java.io.InputStream;
 10   
 import java.io.OutputStream;
 11   
 
 12   
 /**
 13   
  * @author Akima
 14   
  */
 15   
 public interface FileStreamFactory extends StreamFactory {
 16   
 
 17   
     public File toFile(Object key);
 18   
 
 19   
     public String toFilePath(Object key);
 20   
 
 21   
     public InputStream newInput(File file) throws IOException;
 22   
 
 23   
     public InputStream newInput(String fileName) throws IOException;
 24   
 
 25   
     public OutputStream newOutput(File file) throws IOException;
 26   
 
 27   
     public OutputStream newOutput(String fileName) throws IOException;
 28   
 
 29   
 }