| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ImageDescriptor |
|
| 1.0;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 | } |