Coverage Report - org.webslinger.ext.image.ImageDescriptor
 
Classes in this File Line Coverage Branch Coverage Complexity
ImageDescriptor
N/A
N/A
1
 
 1  
 package org.webslinger.ext.image;
 2  
 
 3  
 import java.io.IOException;
 4  
 
 5  
 import org.apache.commons.vfs.FileObject;
 6  
 
 7  
 public interface ImageDescriptor {
 8  
     FileObject getFile() throws IOException;
 9  
     String getContentEncoding() throws IOException;
 10  
     String getContentType() throws IOException;
 11  
     Object get(String prefix, String name) throws IOException;
 12  
 }