Coverage Report - org.webslinger.commons.vfs.util.FileAttributeResolver
 
Classes in this File Line Coverage Branch Coverage Complexity
FileAttributeResolver
N/A
N/A
0
 
 1  
 package org.webslinger.commons.vfs.util;
 2  
 
 3  
 import org.apache.commons.vfs.FileObject;
 4  
 
 5  
 public interface FileAttributeResolver<F extends FileObject> {
 6  
     String[] getAttributeNames(F file) throws Exception;
 7  
     Object getAttribute(F file, String name) throws Exception;
 8  
     void setAttribute(F file, String name, Object value) throws Exception;
 9  
     boolean attributeExists(F file, String name) throws Exception;
 10  
     void removeAttribute(F file, String name) throws Exception;
 11  
 }