| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| FileMapper |
|
| 1.0;1 |
| 1 | package org.webslinger.commons.vfs; | |
| 2 | ||
| 3 | import org.apache.commons.vfs.FileObject; | |
| 4 | import org.apache.commons.vfs.FileSystemException; | |
| 5 | ||
| 6 | public interface FileMapper { | |
| 7 | FileObject mapFile(FileObject file) throws FileSystemException; | |
| 8 | } | |
| 9 |