Coverage Report - org.webslinger.commons.vfs.handlers.ExclusionHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
ExclusionHandler
N/A
N/A
0
ExclusionHandler$NullHandler
100%
2/2
N/A
0
 
 1  
 package org.webslinger.commons.vfs.handlers;
 2  
 
 3  
 import java.util.Collection;
 4  
 
 5  
 import org.apache.commons.vfs.FileSelectInfo;
 6  
 import org.apache.commons.vfs.FileSelector;
 7  
 import org.apache.commons.vfs.FileSystemException;
 8  
 
 9  
 public interface ExclusionHandler extends Handler {
 10  3
     public final class NullHandler implements ExclusionHandler {
 11  
         public void excludeNames(Collection<String> names) {
 12  14
         }
 13  
     }
 14  
 }