| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CreationDeletionHelper |
|
| 1.0;1 |
| 1 | package org.webslinger.commons.vfs.tests; | |
| 2 | ||
| 3 | import java.io.File; | |
| 4 | import java.io.IOException; | |
| 5 | ||
| 6 | import org.apache.commons.vfs.FileObject; | |
| 7 | ||
| 8 | public interface CreationDeletionHelper { | |
| 9 | void create(File file) throws IOException; | |
| 10 | void create(FileObject file) throws IOException; | |
| 11 | } |