| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AllFilesOperation |
|
| 0.0;0 |
| 1 | package org.webslinger.commons.vfs.operations; | |
| 2 | ||
| 3 | import java.net.URL; | |
| 4 | import java.util.Collection; | |
| 5 | ||
| 6 | import org.apache.commons.vfs.FileSystemException; | |
| 7 | import org.apache.commons.vfs.operations.FileOperation; | |
| 8 | ||
| 9 | public interface AllFilesOperation extends FileOperation { | |
| 10 | Collection<URL> getAllURLs() throws FileSystemException; | |
| 11 | } |