Coverage Report - org.webslinger.commons.vfs.operations.COWStateOperation
 
Classes in this File Line Coverage Branch Coverage Complexity
COWStateOperation
N/A
N/A
0
 
 1  
 package org.webslinger.commons.vfs.operations;
 2  
 
 3  
 import java.util.Collection;
 4  
 
 5  
 import org.apache.commons.vfs.FileSystemException;
 6  
 import org.apache.commons.vfs.operations.FileOperation;
 7  
 
 8  
 public interface COWStateOperation extends FileOperation {
 9  
     void clear() throws FileSystemException;
 10  
     void setDeleted(boolean deleted) throws FileSystemException;
 11  
     boolean isDeleted() throws FileSystemException;
 12  
     boolean addBase(String relative) throws FileSystemException;
 13  
     boolean removeBase(String relative) throws FileSystemException;
 14  
     Collection<String> getBases() throws FileSystemException;
 15  
 }