Coverage Report - org.webslinger.commons.vfs.cow.COWEntryFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
COWEntryFactory
N/A
N/A
1
 
 1  
 package org.webslinger.commons.vfs.cow;
 2  
 
 3  
 import org.apache.commons.vfs.FileObject;
 4  
 import org.apache.commons.vfs.FileSystemException;
 5  
 
 6  
 public interface COWEntryFactory {
 7  
     COWEntry getCOWEntry(COWFileSystem fs, COWFileObject file, boolean create) throws FileSystemException;
 8  
     String[] getChildNames(COWFileSystem fs, COWFileObject parent, boolean create) throws FileSystemException;
 9  
 }