Coverage Report - org.webslinger.modules.WorkArea
 
Classes in this File Line Coverage Branch Coverage Complexity
WorkArea
N/A
N/A
0
 
 1  
 package org.webslinger.modules;
 2  
 
 3  
 import java.io.IOException;
 4  
 
 5  
 public interface WorkArea<T extends WorkArea> extends WorkAreaFactory<T> {
 6  
     // May return null if the area is temp
 7  
     String getName();
 8  
     T getParentArea();
 9  
     void abort() throws IOException;
 10  
     void commit() throws IOException;
 11  
     // FIXME: list changes
 12  
 }