| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ImageTransformer |
|
| 1.0;1 |
| 1 | package org.webslinger.ext.image; | |
| 2 | ||
| 3 | import java.awt.Rectangle; | |
| 4 | import java.io.File; | |
| 5 | import java.io.IOException; | |
| 6 | ||
| 7 | public interface ImageTransformer { | |
| 8 | boolean isEnabled() throws IOException; | |
| 9 | Rectangle transform(File file, Rectangle dimensions) throws InterruptedException, IOException; | |
| 10 | } |