Coverage Report - org.webslinger.commons.vfs.FileMapper
 
Classes in this File Line Coverage Branch Coverage Complexity
FileMapper
N/A
N/A
1
 
 1  
 package org.webslinger.commons.vfs;
 2  
 
 3  
 import org.apache.commons.vfs.FileObject;
 4  
 import org.apache.commons.vfs.FileSystemException;
 5  
 
 6  
 public interface FileMapper {
 7  
     FileObject mapFile(FileObject file) throws FileSystemException;
 8  
 }
 9